var fLang = new Array;
fLang['en'] = 'Close';
fLang['fr'] = 'Ferme';

function popImage(width,height,imageURL,imageTitle,lang){
	var imgWin = window.open(
	 '',
	 '_blank',
	 'scrollbars=no,resizable=0,width='+width+',height='+height+',left=50,top=50');
	if( !imgWin ) { return true; } //popup blockers should not cause errors
	imgWin.document.write('<html><head><title>'+imageTitle+'</title></head><body onBlur="self.close()"><center><br><img src="'+imageURL+'" border="1"><br><br><button onClick="self.close()">'+fLang[lang]+'</button></center></body></html>');
	imgWin.document.close();
	if( imgWin.focus ) { imgWin.focus(); }
	return false;
}
