<!--
// Clear Search Form
function clearForm(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 
//-->

<!-- 
// Popup Windows
function PopWin(url,width,height,resizable,scrollbars)
{ 
window.open(url,'NewWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scrollbars+',resizable='+resizable+',width='+width+',height='+height);
} 
//--> 

<!--
// Homepage Select Box Function
sfHover = function() {
	var sfEls = document.getElementById("content-main").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (document.all&&document.getElementById) window.onload=sfHover;
//-->