<!--
function openPictureWindow_Fever(imageName,alt,imageWidth,imageHeight) {
 
if ( (screen.width <= 800) )
{
windowleftposition = (screen.width) - (screen.width - 130);
windowtopposition = (screen.height) - (screen.height - 110);
}
 
if  (  ( screen.width > 800 ) && (screen.width <= 1024) )
{
windowleftposition = (screen.width) - (screen.width - 250);
windowtopposition = (screen.height) - (screen.height - 100);
}
 
if ( (screen.width > 1025 ) && ( screen.width <= 1152 ) )
{
windowleftposition = (screen.width) - (screen.width - 310);
windowtopposition = (screen.height) - (screen.height - 390);
}
 
if ( (screen.width > 1153 ) && ( screen.width <= 1280 ) )
{
windowleftposition = (screen.width) - (screen.width - 380);
windowtopposition = (screen.height) - (screen.height - 400);
}
 
if ( (screen.width > 1281 ) && ( screen.width <= 1600 ) )
{
windowleftposition = (screen.width) - (screen.width - 540);
windowtopposition = (screen.height) - (screen.height - 400);
}
newWindow =	   window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+windowleftposition+",top="+windowtopposition);
newWindow.document.open();
newWindow.document.write('<html><Head><title>'+alt+'</title>'); 
newWindow.document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">');
newWindow.document.write('</Head>');
newWindow.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+'>'); 
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();
}
//-->

