function toUrl(url){
document.location= url;
}  
function disabletext(e){
return false
}
 
function reEnable(){
return true
}
 
//if the browser is IE4+
document.onselectstart=new Function ("return false")
 
//if the browser is NS6
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}


function goToURL(form)
  {

    var myindex=form.dropdownmenu.selectedIndex
    if(!myindex=="")
      {
        window.location.href=form.dropdownmenu.options[myindex].value;

      
      }
}

function ShowDetails(id,maxID)
{
        var i=1;
	for (i=1; i <= maxID; i++) 
	{
	document.getElementById(i).style.display = "none";	
	}
	document.getElementById(id).style.display = "block";
}
