﻿
function ShowDate(){

var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
return dayarray[day]+", "+montharray[month]+" "+daym+", "+year;
}





// This function build the footer contact info
// changes hetre will be represented through out the site
function Footer(){
var fText;
fText="";
    fText = fText +  "<div style='width: 580; text-align: center'>";
    fText = fText +  "<table width='100%' border='0'>";
    fText = fText +  "<tr>";
    fText = fText +  "<td class='copy' width='50%' align='center'>";
    fText = fText +  "<font size='2'><b>GSA Optimum – NY Corporate Office</b></font><br />";
    fText = fText +  "755 Montauk Hwy. Oakdale, NY 11769<br />";
    fText = fText +  "Tel:(631) 244-5744 Fax:(631) 244-5747<br />";
    fText = fText +  "Email: <a href='mailTo:sales@gsatech.com'>sales@gsatech.com</a><br />";
    fText = fText +  "</td>";
    fText = fText +  "<td width='50%' align='center' class='copy'>";
    fText = fText +  "<font size='2'><b>GSA Optimum NJ - Sales Office</b></font><br />";
    fText = fText +  "200 Route 17 South, Mahwah, NJ 07430 Ste. 209<br />";
    fText = fText +  "Tel: (201) 512-9780 Fax: (201) 512-9783<br />";
    fText = fText +  "Email: <a href='mailTo:salesnj@gsatech.com'>salesnj@gsatech.com</a><br />";
    fText = fText +  "</td>";
    fText = fText +  "</tr>";
    fText = fText +  "</table>";
    fText = fText +  "</div>";

    document.write(fText);

}