function Menu_Lateral(Click_Menu)
{
	if(Click_Menu!='')
	{
		if (Click_Menu.style.display == "none")
		{
		Click_Menu.style.display = "";
		}
		else
		{
		Click_Menu.style.display = "none";
		}
	}
}
 
function alerta()
{
	alert("Esta subcategoria no tiene ningun producto")	;
}

function trim (myString)
{
	return myString.replace(/^\s+/g,'').replace(/\s+$/g,'')
}
function enviar()
{
		   
	var valor=document.getElementById("campo").value;
	if(trim(valor)!='' && trim(valor)!='busqueda de productos' && trim(valor)!='* Ingrese su busqueda')
	{
		 document.busqueda.submit();
	}
	else if(trim(valor)=='')
	{
		 document.getElementById("campo").value=' * Ingrese su busqueda';
	}
}
function enviarIdentificador(p)
{ 
	window.location='http://nd-servidor/amalgama/productos.php?p='+p;
}
