/*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;*/

var windowOpen = false;
var window1;
function MM_openBrWindow(theURL,winName,features) { //v2.0
   if (windowOpen == false)
        {
		windowOpen = true;
	   	window1=window.open(theURL,winName,features);
		}
   else if (windowOpen == true)
       	{
        window1.close();
		windowOpen = true;   
	  	window1=window.open(theURL,winName,features);
		} 
}//-->


function menu( id)
{
	if(document.getElementById(id).style.display=='none')
	{
		document.getElementById(id).style.display='block'; 
	}
	else
	{
		document.getElementById(id).style.display='none'; 
		
	}
}

