
// calendar event summary popup
function popsummary(event) {
newWin=window.open("popup/event.php?event="+event,"event_window","resizable=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width=520,height=780,top=5,left=50");
newWin.focus();
if (newWin.opener == null) newWin.opener = self;
}

function popsummarysub(coupon) {
newWin=window.open("popup/coupon.php","event_window","resizable=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width=520,height=780,top=5,left=50");
newWin.focus();
if (newWin.opener == null) newWin.opener = self;
}
