function openPictureWindow_Fever(imageName, imageWidth, imageHeight, alt, posLeft, posTop)
{
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<HTML><TITLE>'+alt+'</TITLE><BODY bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<A href="javascript:close()"><IMG alt="Liver, Liver Conference, Liver Exhibition, Liver Meeting, Liver Congress" src='+imageName+' width='+imageWidth+' height='+imageHeight+' border="0" alt='+alt+'></A>'); 
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
	newWindow.focus();
}

