function makeArray(n) { this.length = n; for (i=1;i<=n;i++) { this[i]=0; } return this; } function displayDate() { var thisMonth = new makeArray(12); thisMonth[0] = "January"; thisMonth[1] = "February"; thisMonth[2] = "March"; thisMonth[3] = "April"; thisMonth[4] = "May"; thisMonth[5] = "June"; thisMonth[6] = "July"; thisMonth[7] = "August"; thisMonth[8] = "September"; thisMonth[9] = "October"; thisMonth[10] = "November"; thisMonth[11] = "December"; var today = new Date(); var day = today.getDate(); var month = today.getMonth(); var year = today.getYear(); if (year < 1000) { year += 1900; } return(thisMonth[month]+" "+day+", "+year); } function openpopup() { var popurl = "investAd.htm"; winpops = window.open(popurl,"","width=290,height=340,"); } function get_cookie(Name) { var search = Name + "="; var returnvalue = ""; if (document.cookie.length > 0) { offset = document.cookie.indexOf(search); if (offset != -1) { // if cookie exists offset += search.length; // set index of beginning of value end = document.cookie.indexOf(";", offset); // set index of end of cookie value if (end == -1) end = document.cookie.length; returnvalue=unescape(document.cookie.substring(offset, end)); } } return returnvalue; } function loadornot() { if (get_cookie('poppedup')=='') { openpopup( ); document.cookie="poppedup=yes"; } }