function veri_in_res(){
	if ( document.form2.nombre.value == "" ) 
 	{
		window.alert( 'Debe ingresar un nombre');
		document.form2.nombre.focus();
		return false;
	}	
	else
		{
		if ( document.form2.rut.value == "" ) 
			{
			window.alert( 'Debe ingresar un rut');
			document.form2.rut.focus();
			return false;
			}	
		else
			{
			if ( document.form2.domicilio.value == "" ) 
				{
					window.alert( 'Debe ingresar el Domicilio');
					document.form2.domicilio.focus();
					return false;
				}	
			else
				{
				if ( document.form2.ciudad.value == "" ) 
					{
						window.alert( 'Debe ingresar la Ciudad');
						document.form2.ciudad.focus();
						return false;
					}	
				else
					{
					if ( document.form2.email.value == "" ) 
						{
							window.alert( 'Debe ingresar su email');
							document.form2.email.focus();
							return false;
						}

					}
				}
			}
		 }
return true;
}

function msgnop()
	{
	alert("Debe solicitar algun documento.");
	document.form3.Submit1.focus();
	}
