//Functions.js - Last tested Monday, July 18th, 2005

//DROP DOWN SHOW LAYER (quicklinks)
function showHide(sStatus){
	if (sStatus == 1){
		dropContent.style.display = "";
	}else{
		dropContent.style.display = "none";
	}
}