<!--//
function enable_menues_for_ie()
{
	//if (document.all&&document.getElementById) {
		
		var allDivs = document.getElementsByTagName( 'div' );

		for ( i = 0; i < allDivs.length; ++i ) {
			if ( allDivs[i].className && allDivs[i].className.indexOf( 'navlink' ) != -1 ) {
				allDivs[i].onmouseover=function()	{
					this.className+=" over";
				}
				allDivs[i].onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}		
			}
		}
	//}
	return;
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  f1 = window.open(theURL,winName,features);
  f1.focus();
}

function MM_openNewWindow(theURL,wwidth,wheight) { //v2.0
  f1 = window.open(theURL,"window","width="+wwidth+",height="+wheight);
  f1.focus();
}

//-->
