function abrePopUp(url){
	var anchoVentanaAct = window.innerWidth;
	var altoVentanaAct = window.innerHeight;
	var anchoVentanaPop = 400;
	var altoVentanaPop = 250;
	
	if(url.indexOf("popGetMP3") >= 0){
		altoVentanaPop = 580;
	}
	
	var posX = 300;
	var posY = 250;
	
	var features = "width="+anchoVentanaPop+",height="+altoVentanaPop+
					",screenX="+posY+",screenY="+posX+",top="+posY+",left="+posX+"";
	
	features = features + "status=no,resizable=no,scrollbars=no,titlebar=no,toolbar=no,location=no";
	
 	window.open(url, "", features) 
}

function enlacePadre(url){
	window.opener.location = url;
}

function restaurar(){
	window.moveTo(0, 0);
	window.resizeTo(window.screen.width,(window.screen.height - 100));
}
function correo(nombre){
	document.write("<a href='mailto:");
	document.write(nombre);
	document.write("@");
	document.write("cancioneroreligioso.net");
	document.write("'>");
	document.write(nombre);
	document.write("@");
	document.write("cancioneroreligioso.net");
	document.write("</a>");
}
