function openPictureWindow_Fever(txtName,imageWidth,imageHeight,alt,posLeft,posTop) {
		newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop+",scrollbars=no");
		newWindow.document.open();
		newWindow.document.write('<html><head><title>'+alt+'</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');

		newWindow.document.write('<table width="100%" height="100%"><tr><td align="center" valign="middle">'+txtName+'</td></tr></table>');
		
		newWindow.document.write('</body></html>');
		newWindow.document.close();
		newWindow.focus();
}
