// JavaScript Document
function toggle(item1,item2) {
	if (document.getElementById(item1) && document.getElementById(item2))
		document.getElementById(item1).style.display = 'block';
		document.getElementById(item2).style.display = 'none';
}
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("sideNav");
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;
function doWindowOpen(win_url,switchem,win_name,win_features) {
  var new_win;
  if (switchem) {
  	new_win = window.open(win_url, win_name, win_features);
  } else {
  	new_win = window.open(win_url, 'newWin', 'width=650,height=480,menubar=1,toolbar=1,scrollbars=1,status=1,location=1,resizable=1');
  }
  new_win.focus();
  return false;
}

