function makepage(src) {
	return "<html>\n" +
	"<head>\n" +
	"<title>Print Coupon</title>\n" +
	"<script>\n" +
	"function step1() {\n" +
	"  setTimeout('step2()', 10);\n" +
	"}\n" +
	"function step2() {\n" +
	"  window.print();\n" +
	"  window.close();\n" +
	"}\n" +
	"</scr" + "ipt>\n" +
	"</head>\n" +
	"<body onLoad='step1()'>\n" +
	"<img src='" + src + "'/>\n" +
	"</body>\n" +
	"</html>\n";

}
function printme(img)
{
  link = "about:blank";
  var pw = window.open(link, "_new");
  pw.document.open();
  pw.document.write(makepage(img));
  pw.document.close();
}
