<!--
function menuHide(elmt) {
	document.getElementById(elmt).style.visibility = "hidden";
	}
	
function menuShow(elmt) {
	document.getElementById(elmt).style.visibility = "visible";
	}
	
	
var timer1 = null;
function menuDown(elmt) {
	var postop = parseInt(document.getElementById(elmt).style.top);
	//alert(elmt);
	if(postop==25){ 
		window.clearTimeout(timer1);
		}
	else
	{
	document.getElementById(elmt).style.top = postop + 1;
	}
	timer1 = setTimeout("menuDown('"+elmt+"')", 5);
}


function menuUp(elmt) {
	var postop = parseInt(document.getElementById(elmt).style.top) ;
	if(postop==-100){ 
		window.clearTimeout(timer1);
		}
	else
	{
	document.getElementById(elmt).style.top = postop - 1;
	}
	timer1 = setTimeout("menuUp('"+elmt+"')", 5);
}

function MenuSelectDirect(select){
    var index = select.selectedIndex;
    document.location = select.options[index].value;
}		
//-->	
