// Copyright 2000-2006, DataCom of Duluth
	
//Set Cookie for Current Page
function scPage(cName) {
	document.cookie = "cPage" + "=" + cName+";path=/;";
}

//Gray Out Current Page
function grayOut(menuItem) {
	document.getElementById(menuItem).style.color = "#FF9933";
}

// Roll Over Buttons
function turnOn(menuItem) {
	if(document.cookie.split("=")[1]!=document.getElementById(menuItem).id) {
		document.getElementById(menuItem).style.color = "#FFFF00";
	}
}

function turnOff(menuItem) {
	if(document.cookie.split("=")[1]!=document.getElementById(menuItem).id) {
		document.getElementById(menuItem).style.color = "#FFFFFF";
	}
}

//Open Files
function openFileA(theFile, theWindow, theBar, theSize, theWidth, theHeight) {
    window.open (theFile, theWindow,"status=no,location=no,toolbars="+theBar+",menubar="+theBar+",directories=no,scrollbars=yes,resizable="+theSize+",width="+theWidth+",height="+theHeight);
}
