
function abrirVentana(subject) {
			/*var url = "http://www.aulaga.info/archivos/";*/
   		/*var url = "file:///home/juanma/Documentos/Aulaga/archivos/";*/
   		var url = "./";
			if (subject=="viverismo") { url= url + "mail_viverismo.html";}
			if (subject=="cartuchos") { url= url + "mail_cartuchos.html";} 
			if (subject=="limpiarmundo06") { url= url + "mail_lmundo06.html";}
			if (subject=="la_aulaga") { url= url + "mail_la_aulaga.html";}  
			if (subject=="feedback") { url= url + "feedback.html";}
						 
			popup_window = window.open(url,"","width=295,height=480,toolbar=no,menubar=no,status=no,scrollbars=no,resizable=yes,location=no");
			popup_window.focus();
}

function abreVentanaImagen(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop) { 
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",toolbar=no,menubar=no,status=no,scrollbars=no,resizable=yes,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+ alt +'<\/title></head>');
	newWindow.document.write('<body style="bgcolor: #fff; margin: 0;" onBlur="self.close()">');
/*	newWindow.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); */
	newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\">');
	newWindow.document.write('<\/body><\/html>');
	newWindow.document.close();
	newWindow.focus();
}