function MuestraFoto(Imagen, Autor, Descripcion) 
{
	WinTop = 100;  
	WinLeft = 150;
	winFeatures = "toolbar=0,location=0,directories=0,status=0";
	winFeatures += ",menubar=0,scrollbars=0,resizable=yes";
	winFeatures += ",screenX="+WinLeft+",screenY="+WinTop;
	winFeatures += ",left="+WinLeft+",top="+WinTop;
	winFeatures += ",height=320,width=270";
	PopUpWindow=window.open("","PopUpWindow",winFeatures);
	PopUpWindow.document.writeln('<html>');
	PopUpWindow.document.writeln('<head>');
	PopUpWindow.document.writeln('<title>Club de buceo CIES de Algeciras</title>');
	PopUpWindow.document.writeln('<link rel="stylesheet" href="cies_foto.css" type="text/css">');
	PopUpWindow.document.writeln('</head>');
	if (navigator.appName == "Microsoft Internet Explorer")
		  PopUpWindow.document.writeln('<body topmargin="10" leftmargin="0"	marginwidth="0" marginheight="0" onLoad="window.resizeTo(document.images[0].width+20,document.images[0].height+200)">');
	else
		    PopUpWindow.document.writeln('<body topmargin="10" leftmargin="0" marginwidth="0" marginheight="10" onLoad="window.resizeTo(document.images[0].width+20,document.images[0].height+80)">');
	PopUpWindow.document.writeln('<center><img  src="'+Imagen+' " border="0" ></center>');
                   if (Autor != null) {
                   	PopUpWindow.document.writeln('<center><p>  Aut@r: '+Autor+'</p></center>');
	}
	if (Descripcion != null) {	
		PopUpWindow.document.writeln('<center><p>  Descripción: '+Descripcion+'</p></center>');
	}
	PopUpWindow.document.writeln("<br><center><form id=form1 name=form1><input type=button onClick='self.close();' value='Cerrar' id=button1 name=button1></form></center>");
	PopUpWindow.document.writeln('</body>');
	PopUpWindow.document.writeln('</html>');
	PopUpWindow.document.close();
	PopUpWindow.focus();
}