
// ouvre une fenêtre pour afficher une image de la bonne grosseur
function openPic(picName,w,h) {
	//newwin = window.open(picName, "Photo", "height=" + (h+45) + ",width=" + (w+35) + ",scrollbars,resizable");
	newwin = window.open('', "Photo", "height=" + (h+50) + ",width=" + (w+40) + ",scrollbars,resizable");
	newwin.document.write("<html><head></head><body bgcolor='#ffffff' text='#FFFFFF'><table border=0 width='100%' height='100%'><tr><td align='center' valign='middle'><a href='javascript:window.close();'><img border=0 src='"+picName+"'></a></td></tr></table></body></html>");
	newwin.document.close();
}


function openGallery(pageName) {
	newwin = window.open(pageName,"Exposition","height=610,width=750,scrollbars,resizable")
}


