// JavaScript Document
function openPictureWindow_Fever(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop) {  // v4.01

	// centrer la fenêtre
	posLeft = (screen.width) ? (screen.width-imageWidth)/2 : 0;
	posTop = (screen.height) ? (screen.height-imageHeight)/2 : 0;

	newWindow = window.open("","FeverWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html>\n');
	newWindow.document.write('<title>'+alt+'</title>\n');
	newWindow.document.write('<body bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" onBlur=\"self.focus();\">\n');
	newWindow.document.write('<a href=\"javascript:self.close();\"><img src=\"'+imageName+'\" width=\"'+imageWidth+'\" height=\"'+imageHeight+'\" alt=\"fermer\" border=\"0\"></a>');
	newWindow.document.write('</body>');
	newWindow.document.write('</html>');
	newWindow.document.close();
	newWindow.focus();
}
