// JavaScript Document creado por Alejandro Stendelis
function validar(){

    if (document.contacto.txtname.value.length==0){
       alert("Type your name / Escriba su nombre")
       document.contacto.txtname.focus()
       return false;
    }

    if (document.contacto.txtcity.value.length==0){
       alert("Type your City / Escriba su ciudad de recidencia")
       document.contacto.txtcity.focus()
       return false;
    }
	
    if (document.contacto.txtcountry.value.length==0){
       alert("Type your Country / Escriba su país de recidencia")
       document.contacto.txtcountry.focus()
       return false;
    }
	
    if (document.contacto.txtmail.value.length==0){
       alert("Type your E-Mail / Escriba su E-Mail")
       document.contacto.txtmail.focus()
       return false;
    }	

    document.contacto.submit();
} 