﻿
function VentanaCentrada(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
	features+='menubar=no,scrollbars=yes,resizable=no';
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}


function validar(f)
{
	var errores="Se han detectado los siguientes errores, por favor, rectifíquelos e inténtelo de nuevo: \n\n";
	var hay=0;
	
	if (f.nombre.value=="")
		{
				hay++;
				errores=errores+hay+".- Falta el nombre.\n";
		}
	if (f.telefono.value=="")
		{
				hay++;
				errores=errores+hay+".- Falta su teléfono de contacto.\n";
		}	
	if (f.email.value=="")
		{
				hay++;
				errores=errores+hay+".- Falta su dirección de correo electrónico ( E-mail ).\n";
		}	
	if (f.observaciones.value=="")
		{
				hay++;
				errores=errores+hay+".- Indique por favor el comentario o duda que tenga.\n";
		}	
	
	if (hay==0)
		return true;
	else
		{
			alert(errores);
			return false;
		}
		
}


