
win = null;
var i = 0;

function affiche (image, legende1, legende2)
{
	i++;
	win = window.open ("",i,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=650");
	win.document.writeln('<html>');
	win.document.writeln('<head>');
	win.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	win.document.writeln('<link rel="stylesheet" type="text/css" href="pl_volcans.css">');
	win.document.writeln('</head>');
	win.document.writeln('<body>');
	win.document.writeln('<center><h2 class="affiche">');
	win.document.writeln('<p>'+legende1+'<br>'+legende2+'</h2>');
	win.document.writeln('<img class="affiche" src="'+image+'">');
	win.document.writeln('<h3 class="affiche">['+image+'] &copy; Pascal Blondé');
	win.document.writeln('<p><form><input type="button" value=" Retour/Close" onClick="window.close()"></form>');
	win.document.writeln('</center></h3>');
	win.document.writeln('</body>');
	win.document.writeln('</html>');
	win.document.close()
}

function affiche_v (image, legende1, legende2)
{
	i++;
	win = window.open ("",i,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=550,height=900");
	win.document.writeln('<html>');
	win.document.writeln('<head>');
	win.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	win.document.writeln('<link rel="stylesheet" type="text/css" href="pl_volcans.css">');
	win.document.writeln('</head>');
	win.document.writeln('<body>');
	win.document.writeln('<center><h2 class="affiche">');
	win.document.writeln('<p>'+legende1+'<br>'+legende2+'</h2>');
	win.document.writeln('<img class="affiche" src="'+image+'">');
	win.document.writeln('<h3 class="affiche">['+image+'] &copy; Pascal Blondé');
	win.document.writeln('<p><form><input type="button" value=" Retour/Close" onClick="window.close()"></form>');
	win.document.writeln('</center></h3>');
	win.document.writeln('</body>');
	win.document.writeln('</html>');
	win.document.close()
}

function affiche_v_tl (image, legende1, legende2)
{
	i++;
	win = window.open ("",i,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=550,height=900");
	win.document.writeln('<html>');
	win.document.writeln('<head>');
	win.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	win.document.writeln('<link rel="stylesheet" type="text/css" href="pl_volcans.css">');
	win.document.writeln('</head>');
	win.document.writeln('<body>');
	win.document.writeln('<center><h2 class="affiche">');
	win.document.writeln('<p>'+legende1+'<br>'+legende2+'</h2>');
	win.document.writeln('<img class="affiche" src="'+image+'">');
	win.document.writeln('<h3 class="affiche">['+image+'] Courtesy of Tom&aacute;s Lara<br>Pictures taken by Tom&aacute;s Lara');
	win.document.writeln('<p><form><input type="button" value=" Retour/Close" onClick="window.close()"></form>');
	win.document.writeln('</center></h3>');
	win.document.writeln('</body>');
	win.document.writeln('</html>');	
	win.document.close()
}

