function EstaVacio(Dato)
{ 
    return ((Dato==null) || (Dato.length==0));
}
function tienecaracter(Cadena, Caracter)
{ 
    var resp;
    if (cadena.indexOf(caracter)!=-1)
       resp=true;
    else
       resp=false;
    return resp;
}
function botonadentro(boton)
{
	boton.background="img/press.png";
    boton.style.cursor='hand';
}
function botonafuera(boton)
{
	boton.background="img/out.png";
}
function navegar(id)
{
	location.href="verprod.php?prdid="+ id.toString();
}
function verfamilia(famid)
{
	if(famid>0)	
		direc="index.php?p1=0&p2="+famid;
	else	
		direc="index.php";
	window.location.href=direc;
}
function buscarnombre()
{
	texto=document.frmbuscar.txtbuscar.value;
	if(texto.length>0)
	  {
 	     direc="index.php?p1=" + texto +"&p2=";
		 window.location.href=direc;
	   }
}
function verproducto(id)
{
	direc="./verprod.php?prdid=";
	prdid= id.toString();
    window.open(direc+prdid,'','menubar=no, scrollbars=yes, Resizable=no, height=400, width=500');
}
function cerrarme()
{
	window.close();
}
