<!--
function myKeyDown(e){
	if (window.Event){
	mykey = e.which;
	}
	else{
	mykey = event.keyCode
	}
	if (mykey==13) { //es el Enter
		//Envio el Form
		//En el portatil falla asi: document.forms[Buscar].submit();
		document.forms[0].submit();
	}
}
function VerDetalle(pagina,ancho,alto,posX,posY)
	{
		modo = "width=" + ancho + ",height=" + alto + ",menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,,left=" + posX + ",top=" + posY
		a = window.open(pagina,"",modo)
	}
function isEmpty(s)
{
   return ((s == null) || (s.length == 0))
}
	
function Verificar()
	{	
	    if (isEmpty(document.Buscar.txtPalabras.value))
			{
			  alert ("Introduzca algún dato a buscar.");
			  document.Buscar.txtPalabras.focus();
			  return false;
			}
	    else
		return true;
	}
	
//-->

