var id = null;
function menustart(id) {
 document.getElementById(id).style.visibility = "visible";
 if (navigator.appName == 'Microsoft Internet Explorer'){
	 document.getElementById(id).style.top = "0";
 }
}

function menustop(id) {
 document.getElementById(id).style.visibility = "hidden";
}
