//////////////////////////////////////////////////////////////////////////////////////////
// Abre una nueva ventana sin botonera, barras de desplazamiento...
// Recibe como parámetros el fichero a abrir(url), el ancho(w) y la altura(h) de la página
//////////////////////////////////////////////////////////////////////////////////////////
function popWin(url, w, h) {
	var direccion = url;
	var x, y, winStr;
	x=0; y=0;
	self.name="mainFrame";
//	winStr = "height="+(h+13)+",width="+w+",screenX="+x+",left="+x+",screenY="+y+",top="+y+",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0";
	winStr = "height="+h+",width="+w+",screenX="+x+",left="+x+",screenY="+y+",top="+y+",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0";
	ventana = window.open(direccion, "_blank", winStr);
}

//////////////////////////////////////////////////////////////////////////////////////////
// Abre una nueva ventana sin botonera, barras de desplazamiento...
// Recibe como parámetros el fichero a abrir(imagen), el ancho(w) y la altura(h) de la página
// adicionalmente coloca una imagen para cerrar la ventana recien abierta
//////////////////////////////////////////////////////////////////////////////////////////
function abrir_imagen(imagen,Ancho,Alto)
{
	MasAlto=Alto+11;
	features = "width="+Ancho+",height="+MasAlto;
	w_new = window.open("",Ancho+Alto,features);
	w_new.document.write("<html>");
	w_new.document.write("<head>");
	w_new.document.write("<title>Detalle de Imagen</title>");
	w_new.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">");
	w_new.document.write("</head>");
	w_new.document.write("<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 bgcolor=#000000>");
	w_new.document.write("<table border=0 bgcolor=#000000 cellpadding=0 cellspacing=0 vspace=0 hspace=0>");
  	w_new.document.write("<tr>");
  	// directorio de la imagen que cierra la ventana
        w_new.document.write("<td bgcolor=#000000 align=right height=11><a href=\'javascript:window.close()\'><img src=\'img/boton_cerrar.gif\' width=\'62\' height=\'11\' border=0></a></td>");
  	w_new.document.write("</tr>");
  	w_new.document.write("<tr>");
        w_new.document.write("<td bgcolor=#000000>");
	w_new.document.write("<img src='");
	w_new.document.write(imagen + "'");
	w_new.document.write(" width='");
	w_new.document.write(Ancho + "'");
	w_new.document.write(" height='");
	w_new.document.write(Alto + "'");
	w_new.document.write(" alt=");
	w_new.document.write("></td>");
  	w_new.document.write("</tr>");
	w_new.document.write("</table>");
	w_new.document.write("</body>");
	w_new.document.write("</html>");
}
