
startList = function() 
{
	if ( document.all && document.getElementById ) 
	{
		navRoot = document.getElementById("dmenu");
		
		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", "");
				}            
			}
		}
	}
}

function MM_openBrWindow(theURL,winName,features) 
{ 
	win = window.open(theURL,winName,features);
	win.focus();
}

function openPopup(url, width, height, winname)    
{
	var trails = "width=" + width + ",height=" + height + ",toolbar=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no";
	newWindow = window.open(url, winname, trails);
}



