

function goorder(){
if (document.selectorder.selectord.options[document.selectorder.selectord.selectedIndex].value != "none") {
location = document.selectorder.selectord.options[document.selectorder.selectord.selectedIndex].value
		}
	}

function switchThis(whatelement) {
	var objLayer = document.getElementById(whatelement);
	state = (objLayer.style.display == 'none') ? 'block' : 'none';
	objLayer.style.display = state;
}

function nomenu() 
{ 
event.cancelBubble = true 
event.returnValue = false; 
return false; 
} 
function clickdown(e)
{
 if (document.all)
 {
   if (event.button==2)
   {
   }
 }
 if (document.layers)
 {
  if (e.which == 3)
  {
   return false;
  }
 }
}
document.oncontextmenu=nomenu; 
document.onmousedown=clickdown;