function popImageCI(imageURL,width,height,title){
	//alert(title);
    PositionX = (800-width)/2;
	PositionY = (600-height)/2;
	if(PositionX<0){
		PositionX=0;
	}
	if(PositionY<0){
		PositionY=0;
	}
	defaultWidth  = width;
	defaultHeight = height;
	var AutoClose = true;
	var imgWin=null;
	if (parseInt(navigator.appVersion.charAt(0))>=4){
	var isNN=(navigator.appName=="Netscape")?1:0;
	var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
	var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
	var optIE='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
	
	if (isNN){imgWin=window.open('about:blank','',optNN);}
	if (isIE){imgWin=window.open('about:blank','',optIE);}
	else {imgWin=window.open('about:blank','',optIE);}
	with (imgWin.document){
	writeln('<html><head><title>Image</title><style>body{margin:0px;}</style>');
	
	if (!AutoClose) writeln('</head><body bgcolor=000000 scroll="no" >')
	else writeln('</head><body bgcolor=000000 scroll="no"  onblur="self.close()">');
	writeln('<img name="George" src='+imageURL+' width="'+defaultWidth+'" height="'+defaultHeight+'" style="display:block"></body></html>');
	close();		
	}
}

