function enlargeimage(imagepath,winheight,winwidth) 
	{
	EnlargedImage=window.open('','',config='height='+winheight+',width='+winwidth+',resize=yes'); 
		EnlargedImage.document.write("<HTML>")
		EnlargedImage.document.write("<BODY bgcolor='black'>")
		EnlargedImage.document.write("<DIV style='text-align:center; vertical-align:middle;'>")
		EnlargedImage.document.write("<br><br><IMG SRC='"+imagepath+"'>")
		EnlargedImage.document.write("</DIV>")
		EnlargedImage.document.write("</BODY>")
		EnlargedImage.document.write("</HTML>")
		EnlargedImage.document.close()
	}