
function ValidarForm()
{
	if(document.getElementById("userId").value == "")
	{
		alert("Please insert your User");	
		document.getElementById("userId").focus();
		return false;
	}
	if(document.getElementById("passwordId").value == "")
	{
		alert("Please insert your Password");	
		document.getElementById("passwordId").focus();
		return false;
	}
	 if (document.getElementById("userId").value != "ECAT" || document.getElementById("passwordId").value != "ECAT123")
  {
	  alert("Wrong Password");	
		return false;
}
 }

	  

 
 
 
 function Abrir_ventana3b(pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=1, width=330, height=330, top=100, Left=500";
window.open(pagina,"",opciones);
}
 
function CloseForm()
{
window.close();	
}
