// JavaScript Document

function valida(idioma)
{
		frmcontacto.name.style.background="#FFFFFF";
	frmcontacto.lastname.style.background="#FFFFFF";
	frmcontacto.email.style.background="#FFFFFF";
	frmcontacto.phone.style.background="#FFFFFF";
if (idioma==0)
{
	if (document.frmcontacto.name.value.length==0 || document.frmcontacto.name.value.length<3)
	{
       alert("Tiene que ingresar su nombre");
	   frmcontacto.name.style.background="#CCCCCC";
       document.frmcontacto.name.focus()
       return 0;
    } 
	if (document.frmcontacto.lastname.value.length==0 || document.frmcontacto.lastname.value.length<3)
	{
       alert("Tiene que ingresar su apellido")
	   frmcontacto.lastname.style.background="#CCCCCC";
       document.frmcontacto.lastname.focus()
       return 0;
    }
	if (document.frmcontacto.email.value.length==0 || document.frmcontacto.email.value.length<3)
	{
       alert("Tiene que ingresar su email")
	   frmcontacto.email.style.background="#CCCCCC";
       document.frmcontacto.email.focus()
       return 0;
    }
	if (document.frmcontacto.phone.value.length==0 || document.frmcontacto.phone.value<100000)
	{
       alert("Tiene que ingresar su Nro Telefonico")
	   frmcontacto.phone.style.background="#CCCCCC";
       document.frmcontacto.phone.focus()
       return 0;
    }
}else if (idioma==1){
	if (document.frmcontacto.name.value.length==0 || document.frmcontacto.name.value.length<3)
	{
       alert("Please fill the field: NAME from the form");
	   frmcontacto.name.style.background="#CCCCCC";
       document.frmcontacto.name.focus()
       return 0;
    } 
	if (document.frmcontacto.lastname.value.length==0 || document.frmcontacto.lastname.value.length<3)
	{
       alert("Please fill the field: LASTNAME from the form")
	   frmcontacto.lastname.style.background="#CCCCCC";
       document.frmcontacto.lastname.focus()
       return 0;
    }
	if (document.frmcontacto.email.value.length==0 || document.frmcontacto.email.value.length<3)
	{
       alert("Please fill the field: EMAIL from the form")
	   frmcontacto.email.style.background="#CCCCCC";
       document.frmcontacto.email.focus()
       return 0;
    }
	if (document.frmcontacto.phone.value.length==0 || document.frmcontacto.phone.value<100000)
	{
       alert("Tiene que ingresar su Nro Telefonico")
	   frmcontacto.phone.style.background="#CCCCCC";
       document.frmcontacto.phone.focus()
       return 0;
    }
}
	document.frmcontacto.submit();
}

var popUpWin=0;

function popUpWindow(URLStr, left, top, width, height)

{

  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }

  popUpWin = open(URLStr, 'CREDOMATIC', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}


