


//-----------------------------------------------------------------------------------------------
function AbreVentana( ruta, ancho, alto ) {
	var ventana = window.open(ruta,"popup","width="+ancho+",height="+alto+",location=no,directories=no,status=no,menubar=no,resizable=no,top=0,left=0" );
	ventana.focus();
}

//-----------------------------------------------------------------------------------------------
function validar( frm ) {
	var errno = 0;
	var NOMBRE = frm.nombre.value;
	var EMAIL = frm.email.value;
	var TEXTO = frm.texto.value;
	if ( NOMBRE == "" ) errno = 1;
	else if ( EMAIL == "" ) errno = 2;
	else if ( EMAIL.indexOf( "@" ) < 2 ) errno = 4;
	else if ( EMAIL.indexOf( "." ) < EMAIL.indexOf( "@" ) ) errno = 5;
	else if ( TEXTO == "" ) errno = 3;
	switch ( errno ) {
		case 1 : alert( "Por favor, indíquenos quién nos escribe" ); frm.nombre.focus(); break;
		case 2 : alert( "Por favor, introduzca un email de contacto" ); frm.email.focus(); break;
		case 3 : alert( "Por favor, escriba un mesnsaje" ); frm.texto.focus(); break;
		case 4 : case 5 : alert( "email incorrecto" ); frm.email.focus(); break;
		default : return true;
	}
	return false;
}	
//-----------------------------------------------------------------------------------------------
function Volver( cad ) {
	window.location=cad;
}

