function displayimage(imgPath) 
{
	WinTop = 100;  
	WinLeft = 150;
	winFeatures = "toolbar=0,location=0,directories=0,status=0";
	winFeatures += ",menubar=0,scrollbars=0,resizable=yes";
	winFeatures += ",screenX="+WinLeft+",screenY="+WinTop;
	winFeatures += ",left="+WinLeft+",top="+WinTop;
	winFeatures += ",height=560,width=510";
	PopUpWindow=window.open("","PopUpWindow",winFeatures);
	PopUpWindow.document.writeln('<html>');
	PopUpWindow.document.writeln('<head>');
	PopUpWindow.document.writeln('<META HTTP-EQUIV=imagetoolbar CONTENT=no>');
	PopUpWindow.document.writeln('<title>Image Closeup</title>');
	PopUpWindow.document.writeln('</head>');
	if (navigator.appName == "Microsoft Internet Explorer")
		  PopUpWindow.document.writeln('<body topmargin="10" bgcolor="#EEEEEE" leftmargin="0" marginwidth="0" marginheight="0" onLoad="window.resizeTo(document.images[0].width+50,document.images[0].height+120)">');
	else
		    PopUpWindow.document.writeln('<body topmargin="10" leftmargin="0" marginwidth="0" marginheight="10" onLoad="window.resizeTo(document.images[0].width+50,document.images[0].height+125)">');
	PopUpWindow.document.writeln('<center><img  src="'+imgPath+' " border="1" ></center>');
	PopUpWindow.document.writeln("<br><center><form id=form1 name=form1><input type=button onClick='self.close();' value='Close Window' id=button1 name=button1></form></center>");
	PopUpWindow.document.writeln('</body>');
	PopUpWindow.document.writeln('</html>');
	PopUpWindow.document.close();
	PopUpWindow.focus();
}
