
function openWin() {
myWin=window.open("offer_of_the_month.htm", "", "status=yes,toolbar=no,menubar=no, width=175,height=150")
closeIt()
}
function closeIt() {
if (!myWin.closed)
setTimeout ("myWin.self.close()",10000)
}

