<!--
/*<![CDATA[*/
function IEHoverPseudo() {

	var navItems = document.getElementById("container-left").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuparent") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparent"; }
		}
	}

}
window.onload = IEHoverPseudo;
/*]]>*/

//-->

<!--
sfHover = function() {
	var sfEls = document.getElementById("localnav").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 (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>

<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function popUpWin(url, type, strWidth, strHeight){
closeWin();
if (type == "fullScreen" ){
strWidth = screen.availWidth - 10;
strHeight = screen.availHeight - 160;
}
var tools="";
if (type == "standard" || type == "fullScreen" ) tools =
"resizable,toolbar=yes,location=yes,scrollbars=yes,menubar=yes,width=418,height=660,top=10,left=20";
if (type == "console" ) tools =
"resizable,toolbar=yes,location=no,scrollbars=yes,width=418,height=660,left=10,top=20";
newWindow = window.open(url, 'newWin', tools);
newWindow.focus();
}
function popUpWin2(url, type, strWidth, strHeight){
closeWin();
if (type == "fullScreen" ){
strWidth = screen.availWidth - 10;
strHeight = screen.availHeight - 160;
}
var tools="";
if (type == "standard" || type == "fullScreen" ) tools =
"resizable,toolbar=yes,location=no,scrollbars=yes,menubar=yes,width=640,height=700,top=0,left=10";
if (type == "console" ) tools =
"resizable,toolbar=yes,location=no,scrollbars=yes,width=640,height=700,left=10,top=0";
newWindow = window.open(url, 'newWin', tools);
newWindow.focus();
}

function popUpWin3(url, type, strWidth, strHeight){
closeWin();
if (type == "fullScreen" ){
strWidth = screen.availWidth - 10;
strHeight = screen.availHeight - 160;
}
var tools="";
if (type == "standard" || type == "fullScreen" ) tools =
"resizable,toolbar=yes,location=no,scrollbars=yes,menubar=yes,width=400,height=320,top=0,left=10";
if (type == "console" ) tools =
"resizable,toolbar=yes,location=no,scrollbars=yes,width=400,height=320,left=10,top=0";
newWindow = window.open(url, 'newWin', tools);
newWindow.focus();
}

//-->

var newWindow = null;
function closeWin(){
if (newWindow != null){
if(!newWindow.closed)
newWindow.close();
}
}

