function accionar(cat){
	obj = document.getElementById('dv_' + cat);
	if (obj){
		if (obj.style.display != "none"){
			obj.style.display = "none";
		}else{
			obj.style.display = "";		
		}
	}else{
		document.location = "buscador.php?tipo=5&cat=" + cat;
		}
}

function validaBuscador(){
	if(document.buscador.aBuscar.value == '') {
		alert("Ingrese una palabra para realizar la búsqueda");
		return false;
		}
	document.buscador.submit();
	}

function enter(e,form) {
if (navigator.appName == "Netscape") 
	tecla = e.which;
else 
	tecla = e.keyCode;
if (tecla ==13) 
	form.submit();
}

function recalcular(){
	c = document.carrito;
	c.submit();
	}
	
function confirmarCompra(){
	document.location = 'confirmaCompra.php';
	}	
	
function cambiarBotonera(row,cat,cambio){
		if (cambio){
				row.attributes['class'].value = 'menuPrincipalON';
		} else {
				row.attributes['class'].value = 'menuPrincipal';
		}
}

