<!--
function AbrirHTML(Fichero,ancho,alto) {
	msgWindow=window.open (Fichero,"wpopup","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width="+ancho+",height="+alto+",resizable=no");
	msgWindow.focus();
	}

function CambiaImagen(image_new, in_image){ 
	in_image.src = image_new;
	}

function AbrirImagen(Imagen,ancho,alto) {
	hWnd=open("","VerImagen","toolbar=no,directories=no,menubar=no,statusbar=no,scrollbars=auto,width="+ancho+",height="+alto+",resize=no");
	hWnd.document.write('<html><head><title>Colegio / Residencia Santa Marķa de Artagan</title></head>');
	hWnd.document.write('<body bgcolor="#cccccc" leftmargin="0" marginheight="0" marginwidth="0" bottommargin="0" rightmargin="0" topmargin="0" ');
	hWnd.document.write('onclick="javascript:window.close()" title=" ”HAZ CLICK EN LA VENTANA PARA CERRARLA! ">');
	hWnd.document.write('<div align="center"><img src=');
	hWnd.document.write(Imagen);
	hWnd.document.write(' /></div></body></html>');
	hWnd.document.close();
	hWnd.focus();
	}
//-->

