function Show(URL, WIDTH, HEIGHT) {
	windowprops = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=no,left=50,top=50,width=" + (WIDTH+50) + ",height=" + (HEIGHT+50);

	text = '<html>\n';
	text +='<head>\n';
	text +='<title>Preview</title>\n';
	text +='</head>\n\n';
	text +='<body>\n\n';
	text +='<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" align="center" valign="middle">\n';
	text +='<tr>\n';
	text +='<td valign="middle" align="center"><a href="javascript:self.close()"><img src="' + URL + '" width="150" height="150" border="0" alt="Click To Close"></a></td>\n';
	text +='</tr>\n';
	text +='</table>\n\n';
	text +='</body>\n';
	text +='</html>';

	preview = window.open("", "preview", windowprops);
	preview.document.open();
	preview.document.write(text);
	preview.document.close();
}

