function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt) {  // v4.01

//  onClick="openPictureWindow_Fever(this,WIDTH,HEIGHT,ALT);return false;"

if (document.getElementById) {
	newWindow = window.open("","newWindow","width="+(imageWidth+7)+",height="+(imageHeight+37)+",scrollbars=no,left=0,top=0");
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" style="margin:2px;padding:0px;" onBlur="self.close()">'); 	
	newWindow.document.write('<div style="text-align:center"><img src="'+imageName.href+'" width="'+imageWidth+'" height="'+imageHeight+'" alt="'+alt+'" style="padding:1px;border:1px solid #000000;margin:0px auto 5px auto"><br><strong style="font-family:Arial, Helvetica, sans-serif;font-size:12px;">'+alt+'</span></div>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
  return false;
 } else {
  return true;
 }
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}