function popWindow(imagesName) {
	myWindow = window.open("","guittonWindow","width=1,height=1,scrollbars=0,resizable=no,left=1,top=1,");
	myWindow.document.write("<html><head><title>ArtGuitton - Photos</title></head><body bgcolor=\"#000000\">");
	myWindow.document.write("<div align=\"center\"><table border=\"0\" cellspacing=\"5\">")
	myWindow.document.write("<tr><td align=\"center\"><img src=\"/images/guitton.jpg\">");
	myWindow.document.write("</td></tr><tr><td align=\"center\">");
	myWindow.document.write("<img src="+imagesName+" name=\"guitton_preview\" width=\"500\" height=\"333\" border=\"0\"></td></tr>");
	myWindow.document.write("<tr><td align=\"center\"><a href=\"javascript:onClick=window.close()\";>")
	myWindow.document.write("<span style=\"color: #ededeb;font-size: 8pt;font-family: verdana,arial,helvetica;text-decoration: none;\">[fermez la page]</a></span></td></tr></table></div></body></html>");

	iWidth = myWindow.document.images['guitton_preview'].width + 50;
	iHeight = myWindow.document.images['guitton_preview'].height + 170;
	myWindow.resizeTo(iWidth, iHeight);
	myWindow.focus();
}	  			

function todayIs() {
	thedate = new Date();
	day = thedate.getDate();
	dayOfWeek = thedate.getDay();
	year = thedate.getFullYear();
	month = thedate.getMonth();
	alldays = new Array(7);
	alldays = ['Dimanche','Lundi','Mardi', 'Mercredi', 'Jeudi','Vendredi','Samedi'];
	allmonths = new Array(12);
	allmonths = ['Janvier','Février','Mars','Avril','Mai','Juin','Juillet','Août','Septembre','Octobre','Novembre','Décembre'];
	document.write('<span style=\"color: #c0c0c0;font-size:8pt;font-family:verdana,arial,helvetica\;">');
	document.write(alldays[dayOfWeek] + ", " + day + " " + allmonths[month] + " " + year);
	document.write('</span>');
}
