<?php
ob_start("ob_gzhandler");
?>
function couponPopup(n) {
   day = new Date();
   id = day.getTime();
   URL = "coupons.html?id=" + n;
   eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=840,height=640,left = 50,top = 50');");

}

function accessoryPopup(n,t) {
   day = new Date();
   id = day.getTime();
   URL = "accessory_popup.html?id="+n+"&cat="+t;
   eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=440,height=500,left = 50,top = 50');");

}

function imgPopup(f) {
   day = new Date();
   id = day.getTime();
   URL = "accessory_popup.html?f="+f;
   eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=440,height=500,left = 50,top = 50');");

}


