function $_div(id){


if (document.getElementById){
var el = document.getElementById(id);


if (el.style.visibility=="hidden"){
			el.style.visibility="visible";
			}
		else {
			el.style.visibility="hidden";
			}


}

}

function $_add(dataid1,dataid2){
var $_this = document.getElementById(dataid1);
var $_vault = document.getElementById('addCarShopLeftCellRight1');

//if   ($_this.value==0 || $_this.value=="") {$_this.value=0;}

//if ($_vault.value==0 || $_vault.value==""){$_vault.value=0;}


function suma(form){
form.total.value = form.cantidad.value + form.precio.value;
return;
}




alert ($_this.value);
alert ($_vault.value);

alert (parseInt($_this.value)*parseInt($_vault.value));
}




  function $_add2(dataid1){
var $_this = document.getElementById(dataid1);
alert ($_this);
}



