function makeArray() {
     for (i = 0; i<makeArray.arguments.length; i++)
         this[i] = makeArray.arguments[i];
 }

function getFullYear(d) {
    var y = d.getYear();
    if (y < 1000) {y += 1900};
    return y;
}

//var zone = "CST";
var days = new makeArray("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var months = new makeArray("January","February","March","April","May","June","July","August","September","October","November","December");

function format_time(t) {

    //var Hours = t.getHours();
    //var Minutes = t.getMinutes();
    var Day = t.getDay();
    var Date = t.getDate();
    var Month = t.getMonth();
    var Year = getFullYear(t);

    //var ampm = "AM";
    //if (Hours > 11) {ampm="PM";}
    //if (Hours > 12) {Hours -= 12;}
    //if (Hours == 0) {Hours = 12;}
    //if (Minutes < 10) {Minutes = "0"+Minutes;}

    timeString = "";
    timeString += "";
    timeString += days[Day];
    timeString += ", ";
    timeString += months[Month];
    timeString += " ";
    timeString += Date;
    timeString += ", ";
    timeString += Year;
    //timeString += "<BR>";
    //timeString += Hours;
    //timeString += ":";
    //timeString += Minutes;
    //timeString += " ";
    //timeString += ampm;
    timeString += "";
    //timeString += " ";
    //timeString += zone;

   return timeString;
}

function PRINTORDER() {
window.open('print_order.html','PRINTORDER','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=600,height=300');
}

function COPYRIGHT() {
window.open('copyright.html','COPYRIGHT','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=no,width=300,height=200');
}

function WKLYJOKE() {
window.open('weekly_joke.html','WKLYJOKE','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=350,height=300');
}

function WKLYRECIPE() {
window.open('weekly_recipe.html','WKLYRECIPE','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=350,height=300');
}

function WKLYSPOTLIGHT() {
window.open('weekly_spotlight.html','WKLYSPOTLIGHT','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=350,height=300');
}

function WKLYQUOTE() {
window.open('weekly_quote.html','WKLYQUOTE','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=350,height=225');
}

function WKLYCOMFORT() {
window.open('weekly_comfort.html','WKLYCOMFORT','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=350,height=300')
}

function WKLYEXCHANGE() {
window.open('weekly_exchange.html','WKLYEXCHANGE','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=350,height=300');
}

function WKLYNEWS() {
window.open('weekly_news.html','WKLYNEWS','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=350,height=300');
}

function TERMSOFUSE() {
window.open('termsofuse.html','TERMSOFUSE','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=350,height=300');
}