<!--
// Store the date in a variable
d_whole = new Date()
d_year = new Date()
dateText2 = ""
dateText = ""
	

// Get the day of the week and convert
dayValue = d_whole.getDay()

if(dayValue==0) {

   dayValue="Sunday";

}

if(dayValue==1) {

   dayValue="Monday";

}

if(dayValue==2) {

   dayValue="Tuesday";

}

if(dayValue==3) {

   dayValue="Wednesday";

}

if(dayValue==4) {

   dayValue="Thursday";

}

if(dayValue==5) {

   dayValue="Friday";

}

if(dayValue==6) {

   dayValue="Saturday";

}



// Get the current month

monthValue = d_whole.getMonth()

if(monthValue==0) {

   monthValue="January";

}

if(monthValue==1) {

   monthValue="February";

}

if(monthValue==2) {

   monthValue="March";

}

if(monthValue==3) {

   monthValue="April";

}

if(monthValue==4) {

   monthValue="May";

}

if(monthValue==5) {

   monthValue="June";

}

if(monthValue==6) {

   monthValue="July";

}

if(monthValue==7) {
   monthValue="August";
}
if(monthValue==8) {
   monthValue="September";
}
if(monthValue==9) {
   monthValue="October";
}
if(monthValue==10) {
   monthValue="November";
}
if(monthValue==11) {
   monthValue="December";
}


// Get the current year; if it's before 2000, add 1900

if (d_whole.getYear() < 2000) 
    year = (1900 + d_whole.getYear())
else 
    year = (d_whole.getYear())	

dateText2 += dayValue + " " + monthValue +  " " + d_whole.getDate() + ", " + year	
dateText += year



function openFL(path) {
popFL=window.open(path,"popFL","height=800,width=1000,scrollbars=yes,resizable=yes,location=0,screenx=0,screeny=0,left=0,top=0");
popFL.focus()
}

function openLG(path) {
popLG=window.open(path,"popLG","height=500,width=725,scrollbars=yes,resizable=yes,location=0,screenx=0,screeny=0,left=0,top=0");
popLG.focus()
}

function openSS(path) {
popSS=window.open(path,"popSS","height=500,width=675,scrollbars=yes,resizable=yes,location=0,screenx=0,screeny=0,left=0,top=0");
popSS.focus()
}

function openMAP(path) {
popMAP=window.open(path,"popMAP","height=485,width=550,scrollbars=yes,resizable=yes,location=0,screenx=0,screeny=0,left=0,top=0");
popMAP.focus()
}

function openPR(path) {
popPR=window.open(path,"popPR","height=1000,width=725,scrollbars=yes,resizable=yes,location=0,screenx=0,screeny=0,left=0,top=0");
popPR.focus()
}


//rollovers

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		site_over = newImage("images/top_sitemap2.gif");
		contact_over = newImage("images/top_contact2.gif");
		req_over = newImage("images/top_reqinfo2.gif");
		preloadFlag = true;
	}
}
