// POP-UP WINDOW PROMOTION. 
// SCRIPT SETS AN IMAGE AND POP-UP TO DISPLAY FOR A PERIOD OF TIME
// EXPIRATION DATE IS SET BELOW

<!-- Begin

function popWindow() {
  window.open('../Library/holiday.pdf','newWin','width=no,height=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
}

function checksquare(date) {
var pic = "../images/square-graphic.jpg";
expdate = new Date("1/3/2006");
curdate = new Date();
if (expdate.getTime() > curdate.getTime())
document.write("<a href=\"#\" onClick=\"popWindow();\"><img src=" + pic + " border=\"0\" alt=\"Miles of Freedom\"></a>");
}

function checkhorizontal(date) {
var pic = "../images/horizontal-graphic.jpg";
expdate = new Date("2/28/2007");
curdate = new Date();
if (expdate.getTime() > curdate.getTime())
document.write("<a href=\"#\" onClick=\"popWindow();\"><img src=" + pic + " border=\"0\" alt=\"Give the Gift That Keeps Your Wheels Turning!!!\"></a>");
}

// End -->