//
// Page créée le 23/08/2007
// par Gabriel Villenave
// g.villenave@gmail.com
//
// Contenu disponible sous licence Art Libre
//


function thumb_popup(path, msg)
{
	i1 = new Image;
	i1.src = path;
	html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n'+
'<html xmlns="http://www.w3.org/1999/xhtml">\n'+
'<head>\n'+
'  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n'+
'  <title>Catherine Favier, artiste peintre</title>\n'+
'  <link href="styles.css" type="text/css" rel="stylesheet" />\n'+
'</head>\n'+
'<body>\n'+
'<div class="align-center" style="margin:0px;">\n'+
'<a href="javascript:window.close();" title="'+msg+'">\n'+
'<img src="'+path+'" name="fullimage" onload="window.resizeTo(document.fullimage.width+14,document.fullimage.height+32)" style="border:0px;" alt="'+msg+'" />\n'+
'</a>\n'+
'</div>\n'+
'</body>\n'+
'</html>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
}

