// Creado por: Pablo Vásquez Paredes
// Ica - Perú
// 2002

//---------------   VARIABLES GLOBALES   ---------------

//---------------    FUNCIONES LOCALES   ---------------
function AbreWnd(url,ancho,alto,id,titulo){
//	imgsrc = new Image(ancho,alto);
//	imgsrc.src = url;
	if (alto > screen.availHeight) {
	    alto = screen.availHeight - (21 + 35);
	}
	wnd = window.open("about:blank", "foto"+id, "toolbar=no,resizable=yes,scrollbars=yes,height="+alto+",width="+ancho+",top=21,left=21'")
	wnd.document.write("<HTML><HEAD><TITLE>"+titulo+"</TITLE><link rel='stylesheet' href='../jscss/main.css' type='text/css'>");
	wnd.document.write("</HEAD><BODY topmargin=0 leftmargin=0 bgcolor='#C9B18B'>");
	wnd.document.write("<img src='"+url+"'>");
	wnd.document.write("</BODY></HTML>");
}