function Start(URL, WIDTH, HEIGHT, ALT) {
var windowprops = "width=" + WIDTH + ",height=" + (HEIGHT+30);

var text = "<html><head><title>'" + ALT + "'</title></head><body bgcolor='white' leftmargin='0px' topmargin='0px'><img src='" + URL + "' alt='" + ALT + "'><script language='javascript1.2'>document.write('<table border=0 cellPadding=0 cellSpacing=0 width=100%><tr><td width=33% align=center><a href="+'javascript:top.window.print()'+"><font align=left>Print Window</font></a></td><td width=33%></td><td width=33% align=center> <a href="+'javascript:top.window.close()'+"><font align=right>Close Window</font></a></td></tr></table>');</script></body></html>";

preview = top.window.open("", "preview", windowprops);
preview.top.document.open();
preview.top.document.write(text);
preview.document.close();
}
