function ShowImage(ImagePath, Height, Width, Title) 
{
	Handle = window.open("", "Preview","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=" + Width + ",height=" + Height + ",Title='" + Title + "'");
	Handle.document.open();
	
	Handle.document.write("<html>")
	//Handle.document.write("<head><title>" + Title + "</title></head>")//
	
	Handle.document.write("<body style='margin:0'>");
	Handle.document.write("<img height=" + Height + " width=" + Width + " src='" + ImagePath + "' Title='" + Title + "'>");
	Handle.document.write("</body>");
	Handle.document.write("</html>");

	Handle.document.close();
}
