<!--// Begin
function visualiza (path,width,height) {
	var scroll = ( ( (width+50) >= screen.width ) || ( (height+100) >= screen.height) ) ? "yes" : "no";

	var ancho = ( (width+50) > (screen.width-60) ) ? (screen.width-60) : (width+50);
	var alto = ( (height+100) > (screen.height-80) ) ? (screen.height-80) : (height+100);

	windowtop = (screen.height - alto)/2;
	windowleft = (screen.width - ancho)/2;

	var opciones = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=" + scroll + ",width=" + ancho + ",height=" + alto + ",top=" + windowtop + ",left=" + windowleft;
	msg = open("","DisplayWindow",opciones);
	msg.document.open();
//**	msg.document.focus();
	msg.document.writeln("<HEAD><TITLE>Fotos de El Muro</TITLE></HEAD>");
	msg.document.writeln("<BODY BGCOLOR=#52B8E0>");
	msg.document.writeln("<CENTER>");
	msg.document.writeln("<IMG SRC=" + path + " WIDTH=" + width + " HEIGHT=" + height + ">");
	msg.document.writeln("<P><INPUT TYPE='button' VALUE='Cerrar' onClick='self.close();'></P>");
	msg.document.writeln("</CENTER>");
	msg.document.close();
}
// End -->

