//////////////////////////////////////////////////////////////////
// 		Libreria comun de rutinas
//////////////////////////////////////////////////////////////////


	// Abrir ventana
	function win(theURL,winName,ancho,alto,barras) {
		var winl = (screen.width - ancho) / 2;
		var wint = (screen.height - alto) / 2;
		var paramet='top='+wint+',left='+winl+',width='+ancho+',height='+alto+',scrollbars='+barras+'';
		var splashWin=window.open(theURL,winName,paramet);
		splashWin.focus();
	}

	// Abrir ventana eficiente
	function popc(a){
		var enlace = a.getAttribute("href");
		var nombre = a.getAttribute("nombre");
		var ancho = a.getAttribute("ancho");
		var alto = a.getAttribute("alto");
		var barras = a.getAttribute("barras");
		if(isNaN(ancho)) ancho = 300;
		if(isNaN(alto)) alto = 250;
		if(isNaN(barras)) barras = 0;
		win(enlace,nombre,ancho,alto,barras);
	}

	// Validar email
	function validarEmail(valor) {
		if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(valor)) {
			return (true);
		} else {
			return (false);
		}
	};









