function ViewImage(ifile,ix,iy,ititle) {
	var win;
	var sWidth;
	var sHeight;
	win = window.open("","imageviewer","width="+ix+",height="+iy+",menubar=no,toolbar=no");
	win.document.open();
	win.document.write("<html><head><title>"+ititle+"</title>");
	win.document.write("</head><body>");
	win.document.write('<div style="position:absolute; width:'+ix+'px; height:'+iy+'px; left:0px;top:0px">');
	win.document.write('<a href="#" onclick="self.close()"><img src='+ifile+' border="0"></a></div></body></html>');
	win.document.close();
}