function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",resizable=yes,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#d5e2ea" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" >'); 

	newWindow.document.write('<table id="Bdy" align="center"  border="0" cellpadding="0" cellspacing="0">');
	newWindow.document.write('  <tr>');
	newWindow.document.write('    <td align="center" valign="middle"><br>');
	newWindow.document.write("<img id='Ph' name='Ph'  src='" + imageName + "' alt='+alt+'>");
	newWindow.document.write("	<br>");
	newWindow.document.write('<center><input type=button value=" Close " onclick="window.close();"></center> ');	
	newWindow.document.write('	</td>');
	newWindow.document.write('  </tr>');
	newWindow.document.write(' </table>');

	newWindow.document.write('</body></html>');
	newWindow.document.write('<script>');
	//newWindow.document.write('document.all.Bdy.dialogWidth=600;');
	//newWindow.document.write('alert(newWindow.dialogWidth[ = dialogWidth]);');
	newWindow.document.write('<' + '/' + 'script' + '>');
	newWindow.document.write('	<script>');
	newWindow.document.write('function cmenu()');
	newWindow.document.write('{if (document.readyState == "complete") {');
	newWindow.document.write('	window.resizeTo(document.all.Bdy.offsetWidth+60,document.all.Bdy.offsetHeight+60);');
	newWindow.document.write('}else{')
	newWindow.document.write('setTimeout("cmenu()",20);')
	newWindow.document.write('}')
	newWindow.document.write('}')
	newWindow.document.write('setTimeout("cmenu()",1)')
	newWindow.document.write('<' + '/' + 'script' + '>');
	newWindow.document.close();
	newWindow.focus();
}

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height,scr)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scr+',resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
