var ventana = null;

function vent(pagina,nombre,w,h,parametros){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
ajustes = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+','+parametros+''
ventana = window.open(pagina,nombre,ajustes);
ventana.focus();
}

var ventana = null;
function vent2(pagina,nombre,w,h,parametros){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
ajustes = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+','+parametros+''
ventana = window.open(pagina,nombre,ajustes);
ventana.focus();
}

function Validar(form)
{
	if (form.nombre.value == "")
	{ alert("Debe de introducir su nombre"); form.nombre.focus(); return; }

    if (form.email.value == "")
	{ alert("Tiene que escribir su dirección de correo electrónico"); form.email.focus(); return; }
	if (form.email.value.indexOf('@', 0) == -1 ||
      form.email.value.indexOf('.', 0) == -1)
	{ alert("La dirección de correo que ha introducido es incorrecta"); form.email.focus(); return; }

	if (form.texto.value == "")
	{ alert("Debe de introducir el texto"); form.texto.focus(); return; }

  form.submit();
}



