// JavaScript Document

<!--

function adjustSearch() {
	if (document.bodyForm.searchstring.value == 'Search') {
		document.bodyForm.searchstring.value = '';
	}
}


function changeBGon(row){
var hoverRow = document.getElementById(row);
hoverRow.style.backgroundColor = '#7338AD'; 
}

function changeBGoff(row){
var offRow = document.getElementById(row);
offRow.style.backgroundColor =  '#330099';
}

function showQLinks(){
var linkGraphic = document.getElementById('quick');
var state = linkGraphic.src.split('_');
var linkDiv = document.getElementById('quicklinksDiv');

	if (state[1] == 'closed.gif'){
		linkGraphic.src = "/images/quicklinks_open.gif";
		linkGraphic.alt = "QuickLinks";
		linkDiv.style.display = '';
	}
	else{
		linkGraphic.src = "/images/quicklinks_closed.gif";	
		linkDiv.style.display = 'none';
		linkGraphic.alt = "QuickLinks";
	}
}


function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL," + id + ", 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=638');");
}

function mapPop(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL," + id + ", 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=650,height=600');");
}

function fillText() {
document.getElementById('filler').innerHTML=' &nbsp;  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ';
}


//-->