function openPictureWindow_Fever(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop) {  // v4.01

	var width = 0, height = 0;
	var leftOffset = 0, topOffset = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		width = window.innerWidth;
		height = window.innerHeight;
  	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		width = document.documentElement.clientWidth;
		height = document.documentElement.clientHeight;
		leftOffset = window.screenLeft;
		topOffset = window.screenTop
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	//IE 4 compatible
		width = document.body.clientWidth;
		height = document.body.clientHeight;
	}
	
	if(imageWidth <=width){
		posLeft = (width/2)-(imageWidth/2) + leftOffset;
		if(imageHeight <=width) {
			posTop = (height/2)-(imageHeight/2) + topOffset;
		}
	} else {
		var screenW = 640, screenH = 480;
		if (parseInt(navigator.appVersion)>3) {
 			posLeft= screen.width/2 - (imageWidth/2);
	 		posTop = screen.height/2 - (imageHeight/2);
		}
	}

	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>View</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\">'); 	
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}