function LoadPopUpWindow(myUrl, wWidth, wHeight)
{
 var winL = ((screen.width - wWidth) / 2) - 110;
 var winT = ((screen.height - wHeight) / 2) - 110;
 winprops = 'height= ' +wHeight+ ', width= ' + wWidth+ ', top=' +winT+ ',left=' +winL+ ',scrollbars= no, resizable= no';
 
 win = window.open(myUrl, '', winprops, false);
}

function SectionListBGChange(ChangeTo, topPos) {
  //alert(ChangeTo);
  //getElementById("SectionList").style.backgroundColor= "#000";
  
  if (ChangeTo=="Text")
  {
   document.getElementById("SectionBG").style.background= "#fff";
   document.getElementById("SectionText").style.opacity= "1";
   document.getElementById("SectionText").style.filter= "alpha(opacity=100)";
   //document.getElementById("SectionText").-moz-opacity= "1";
  }
  else {
  document.getElementById("SectionBG").style.background= "url(imgs/" + ChangeTo + ".gif) no-repeat 190px " + topPos + "px #fff";
  document.getElementById("SectionText").style.opacity= ".2";
  document.getElementById("SectionText").style.filter= "alpha(opacity=20)";
  //document.getElementById("SectionText").-moz-opacity= ".2";
  }
  
  //opacity: .5;
	//filter: alpha(opacity=50);
	//-moz-opacity: .5;
  
  //alert("url(imgs/" + ChangeTo + ".gif right 25px #fff");
}

startList = function() {

if (document.all&&document.getElementById) {
	navRoot = document.getElementById("nav");
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				this.className+=" over";
			}
			node.onmouseout=function() {
				this.className=this.className.replace(" over", "");
			}
		}
	}
 }
}
//window.onload=startList;