function goto_URL(object)
{
    window.location.href = object.options[object.selectedIndex].value;
}

function clickclear(thisfield, defaulttext)
{
   if (thisfield.value == defaulttext)
   {
      thisfield.value = "";
   }
}

function clickrecall(thisfield, defaulttext)
{
   if (thisfield.value == "")
   {
      thisfield.value = defaulttext;
   }
}

function ShowBox(BoxName)
{
   obj=document.getElementById(BoxName);
      obj.style.display="block";
}

function HideBox(BoxName)
{
   obj=document.getElementById(BoxName);
      obj.style.display="none";
}

function Toggle(BoxName)
{
   obj=document.getElementById(BoxName);
   visible=(obj.style.display!="none");
   if (visible)
   {
      obj.style.display="none";
   }
   else
   {
      obj.style.display="block";
   }
}


