var NewWindow=null;

function ShowImage(ImgSource,ImgWidth,ImgHeight,Title,Text) { 
	var WinLeft=0, WinTop=0;

 	window.status='Click Here';
   	if (NewWindow) {
		NewWindow.close();
	}

	if (navigator.appName == "Netscape") {
		WinLeft=self.screenX+(window.outerWidth/2);
		WinTop=self.screenY+(outerHeight-innerHeight-26);
	}else{
		WinLeft=self.screenLeft+(window.document.body.clientWidth/2);
		WinTop=self.screenTop;
	}
	var WinAppearence = 'scrollbars=no,width='+(ImgWidth)+',height='+(ImgHeight)+',top='+WinTop+',left='+WinLeft;
	var Hypertext = '<html><head><title>'+ Title +'</title><base href="'+location.href+'"></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#ffffff"><img width="' + ImgWidth + '" height="' + ImgHeight + '" src="' + ImgSource + '" border="0" alt="' + Title + '"><p style="font-family: Arial; font-size: 12px;">'+ Text +'</body></html>';
	
   NewWindow=window.open( '','NewWindow',WinAppearence);
   NewWindow.document.writeln(Hypertext);
   NewWindow.focus();
}

