function DespliegaMenu(imagen,vermenu,ocultarmenu) { 
	document.all[imagen].src='/img/flecha_2.gif';
	document.all[vermenu].style.display = 'inline';
	document.all[ocultarmenu].style.display = 'none';
}
function OcultarImagen(imagen) { document.all[imagen].src='/img/flecha_1.gif'; }
function OcultaPrecarga() { document.all['precarga'].style.visibility='hidden'; }
function VSubMenu(menu) { document.all[menu].style.display = 'none'; }
function OSubMenu(menu) { document.all[menu].style.display = 'inline'; }
function ChStyleSM(objeto,estilo) { document.all[objeto].className=estilo; }
function OcAllMenu() { 
	document.all['menu1'].style.display = 'none';
	document.all['menu2'].style.display = 'none';
}
function VImgCarro() { document.all['i3'].src='/img/carro2.gif'; }
function OImgCarro() { document.all['i3'].src='/img/carro.gif'; }
function Paginas(pver) {
	document.all['pagina1'].style.display = 'none';
	document.all['pagina2'].style.display = 'none';
	document.all['pagina3'].style.display = 'none';
	document.all[pver].style.display = 'block';
}

function Contactar() {
horizontal = (screen.width-452)/2;
vertical = (screen.height-276)/2;
	window.open('contactoform.asp','ContactoEs','width=452,height=276,top='+vertical+',left='+horizontal);
}
function sumar(campo) {
	if(campo.value < 99) {
		campo.value++;
	}
}
function restar(campo) {
	if(campo.value > 1) {
		campo.value--;
	}
}

function addToCart(cantidad,producto) {
	formCarrito.productos.value += "\n" + cantidad.value + " x " + producto.value;
}
function verImagen(imagen) {
	h = ((screen.width-712)/2)-15;
	v = ((screen.height-430)/2)-10;
	pagina = "imagen.asp?src="+imagen;
	window.open(pagina,null,'top='+v+', left='+h+', width=712, height=430, scrollbars=yes, resizable=yes');
}