function ventana_redimen(nombre)
{
	win = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height=1,width=1,top=50,left=10');
	win.document.writeln ('<html>');
	win.document.writeln ('<head><title>Hotel Mont Rosa</title></head>');
	win.document.writeln ('<script>');
	win.document.writeln ('var n=0;');
	win.document.writeln ('var ie=0;');
	win.document.writeln ('if (navigator.appName=="Netscape") {n=1;ie=0;}');
	win.document.writeln ('if (document.all) {n=0;ie=1;}');
	win.document.writeln ('function redimensiona()');
	win.document.writeln ('{');
	win.document.writeln ('ancho=document.imagen.width;');
	win.document.writeln ('alto=document.imagen.height;');
	win.document.writeln ('if (n)');
	win.document.writeln ('	{');
	win.document.writeln ('window.resizeTo(ancho+10,alto+57);');
	win.document.writeln ('	}');
	win.document.writeln ('else');
	win.document.writeln ('	{');
	win.document.writeln ('window.resizeTo(ancho+14,alto+38);');
	win.document.writeln ('	}');
	win.document.writeln ('}');
	win.document.writeln ('function centrar()');
	win.document.writeln ('{');
	win.document.writeln ('anchow=screen.width;');
	win.document.writeln ('altow=screen.height;');
	win.document.writeln ('window.moveTo((anchow/2)-(ancho/2),(altow/2)-(alto/2));');
	win.document.writeln ('}');
	win.document.writeln ('</script>');
	win.document.writeln ('<body  ONCLICK="javascript:window.close()" topmargin="0" leftmargin="0" marginwidth="no" marginheight="no">');
	win.document.writeln ('<center><img onLoad="redimensiona(); centrar();" name=imagen src="' + nombre +'"></center>');
	win.document.writeln ('</body>');
	win.document.writeln ('</html>');
}

function sobre(src,Color)
{
	if (!src.contains(event.fromElement))
	{
		src.bgColor = Color;
	}
}

function fuera(src,Color2)
{
	if (!src.contains(event.toElement))
	{
		src.bgColor = Color2;
	}
}
