// JavaScript Document
	

function validar(){
	if(document.f1.nombre.value==""){
		alert("ERROR: Por favor ingrese su Nombre");
		document.f1.nombre.focus();
		return false;
	}else if(document.f1.email.value==""){
		alert("ERROR: Por favor ingrese sus Email");
		document.f1.email.focus();
		return false;
	}else if(document.f1.telefono.value==""){
		alert("ERROR: Por favor ingrese sus Telefono");
		document.f1.telefono.focus();
		return false;
	}else if(document.f1.orgetto.value==""){
		alert("ERROR: Por favor ingrese su Empresa");
		document.f1.orgetto.focus();
		return false;
	}else{
		//open("confirmacion.php","","width=630,height=120,left=0,top=0,scrollbars=no");
		document.f1.action="enviar.php";
		document.f1.submit();
		
	}
	
	}