
//<![CDATA[ 

function stoperror(){
return true
}
window.onerror=stoperror

    function gotoSelected(f)
    {
      nr = f.selectedIndex;
      if(nr == 0)return false;
      else
      {
       location.href= f[nr].value;
      } 
    }

function GoToUrl (x)
{
    if (x == "nothing") 
    {
    document.forms[0].reset();
    document.forms[0].elements[0].blur();
    }
    else 
    {
    parent.window.location.href = x;
    }
}
if (document.getElementById)
{
document.write('<style type="text/css">.dropcontent{display:none;}</style>\n')
}
function contractall(){
if (document.getElementById){
var inc=0
while (document.getElementById("dropmsg"+inc)){
document.getElementById("dropmsg"+inc).style.display="none"
inc++
}
}
}
function expandone()
{
  var myforms = document.getElementsByName("dropmsgform");
  if (myforms.length>=1){
    var selectedItem=document.dropmsgform.dropmsgoption.selectedIndex;
    contractall();
    document.getElementById("dropmsg"+selectedItem).style.display="block";
  }
}
if (window.addEventListener)
window.addEventListener("load", expandone, false)
else if (window.attachEvent)
window.attachEvent("onload", expandone)
//]]> 
