        function LogIn() {
                if(document.form1.f_email.value == ''){
                        alert('Favor Colocar su Email') ;
                        document.form1.f_email.focus() ;
                 }else{
                         FrmSubmit() ;
                 }
        }

	function FrmSubmit(){
		document.getElementById("form1").submit() ;
	}
