function Open_Special_Window(windowURL) 
{
	window.open(windowURL,"Special_Window","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=auto,resizable=no,width=350,height=200, top=100, left=100");
}

function printPage() {
if (window.print) {
agree = confirm('Press okay if you would like to print these coupons. \nPrint now?');
if (agree) window.print(); 
   }
}

		function JSWindow(window_url, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(window_url, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}