﻿function open_window(link,w,h) {
		var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
		newWin = window.open(link,'newWin',win);
	};
function discount()
	   			 {
   			 		var Form="<html>" +
				 	"<head>" +
			 			"<title>Купон на скидку</title>" +
						"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1251\">" +
			 		"</head>" +
			 		"<body style=\"background-color:#111111;\">" +
			 		"<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" +
			 		"<tr><td><img src=\"/images/kupon.jpg\" name=\"kupon\"></td></tr>" +
			 		"<tr><td align=\"center\" style=\"padding:15px;\"><input type=\"button\" value=\"Распечатать\" onclick=\"window.print();\"></td></tr>" +
			 		"</table>" +
			 		"</body>" +
			 		"</html>";
					DiscountPanel=open('', 'DiscountPanel', 'dependent=1,width=607,height=530,status=no,toolbar=no,menubar=no,location=no,resizable=yes');
					DiscountPanel.document.open();
					DiscountPanel.document.write(Form);
					DiscountPanel.document.close();
					DiscountPanel.document.body.style.margin="0";
	   			 }
