// JavaScript Document
/* Colegium.com*/

/* Funcion PopUp - Salud*/
function popup (URL){
	window.open(URL,"Ventana1","width=500, height=350, scrollbars=yes, menubar=no, location=no, resizable=no")
} 


/*Funcion PopUp - Cobranza */
function popup_cobranza (URL){
	window.open(URL,"Ventana1","width=700, height=400, scrollbars=yes, menubar=no, location=no, resizable=yes")
} 


/*Funcion Foco */
function foco (){
	document.gen_form_login.vt_LoginName.focus();
} 

function popupolvido (URL){
	window.open(URL,"Ventana1","width=545, height=200, scrollbars=yes, menubar=no, location=no, resizable=no")
}

function isnotEmpty (elem){
	var str=elem.value;
	var re=/.+/;
	if(!str.match(re)){
		alert("Por favor ingrese un email.");
		return false;
	} else {
return true;}
}

function isEMailAddr (elem){
	var str=elem.value;
	var re=/^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/;
	if(!str.match(re)){
		alert("Por favor verifique el formato del email. Aparentemente no es correcto.");
		return false;
	} else {
		return true;
	}
}

function validateform (form){
	if(isnotEmpty(form.vt_email)){
			if(isEMailAddr(form.vt_email)){
			return true;
			}
	}
	return false;
}

//function popup3 (URL,Largo,Alto){
//	alert ("Pagina: "+URL+"\n"+"Largo: "+Largo+"\n"+"Alto: "+Alto);
//	a = (URL+",Ventana1"+",width="+Largo+", height="+Alto+", scrollbars=no, menubar=no, location=no, resizable=no");
//	/*window.open(URL,"Ventana1","width=Largo, height=Alto, scrollbars=no, menubar=no, location=no, resizable=no")*/
//	window.open (a);
//} 


//function popup2 (URL,Largo,Alto){
//	/*window.open(URL,"Ventana1","width=500, height=350, scrollbars=no, menubar=no, location=no, resizable=no")*/
//	alert("URL: "+URL+"\n"+"Largo: "+Largo+"\n"+"Alto: "+Alto);
//	largox = "whidth="+Largo;
//	altox = "height="+Alto;
//	alert (largox);
//	alert (altox);
//	window.open(URL,"Ventana1",largox, altox, "scrollbars=no, menubar=no, location=no, resizable=no")
//
//} 



