// Función para abrir una ventana 
// nueva e insertar una foto de la galería.
//
// sFoto es la URL de la imagen.
//

function MostrarFoto(sFoto) {
    hWin = window.open("", "FOTO", "toolbar=0,location=0,directories=0,status=0,menubar=0,width=690,height=530,top=35,left=35,scrollbars=0,resizable=1");
    hWin.document.writeln('<html><head><title>FOTO</title></head>');
	hWin.document.writeln('<body bgcolor="#66AA66">');
	hWin.document.writeln('<center><img vspace=5 hspace=5 src="' + sFoto + '" border=5></center>');
	hWin.document.writeln('</body></html>');
	hWin.document.close();
}

function MostrarFotoJuego(sFoto) {
    hWin = window.open("", "FOTO", "toolbar=0,location=0,directories=0,status=0,menubar=0,width=480,height=350,top=35,left=35,scrollbars=0,resizable=1");
    hWin.document.writeln('<html><head><title>FOTO</title></head>');
	hWin.document.writeln('<body bgcolor="#66AA66">');
	hWin.document.writeln('<center><img vspace=5 hspace=5 src="' + sFoto + '" border=5></center>');
	hWin.document.writeln('</body></html>');
	hWin.document.close();
}

function MostrarFotoJuegoConNota(sFoto, sNota) {
    hWin = window.open("", "FOTO", "toolbar=0,location=0,directories=0,status=0,menubar=0,width=480,height=435,top=35,left=35,scrollbars=0,resizable=1");
    hWin.document.writeln('<html><head><title>FOTO</title></head>');
	hWin.document.writeln('<body bgcolor="#66AA66">');
	hWin.document.writeln('<center>');
	hWin.document.writeln('<img vspace=5 hspace=5 src="' + sFoto + '" border=5>');
	hWin.document.writeln('<p><font face="Tahoma, Arial, Helv" size=-1>' + sNota + '</font></p>');
	hWin.document.writeln('</center>');
	hWin.document.writeln('</body></html>');
	hWin.document.close();
}

function MostrarNota(sNota) {
    hWin = window.open("", "NOTA", "toolbar=0,location=0,directories=0,status=0,menubar=0,width=480,height=100,top=35,left=35,scrollbars=0,resizable=1");
    hWin.document.writeln('<html><head><title>NOTA</title></head>');
	hWin.document.writeln('<body bgcolor="#66AA66">');
	hWin.document.writeln('<center>');
	hWin.document.writeln('<p><font face="Tahoma, Arial, Helv" size=-1>' + sNota + '</font></p>');
	hWin.document.writeln('</center>');
	hWin.document.writeln('</body></html>');
	hWin.document.close();
}
