
<!--
function resetform() 
{
   document.forms[0].elements[1] == "";
}

function doMouseOver(obj)
{
   obj.style.color = "white";
   obj.style.textDecoration = "underline";
   return true;
}

function doMouseOut(obj)
{
   obj.style.color = "ffcc66";
   obj.style.textDecoration = "none";
   return true;
}

function doMouseOverText(obj)
{
   obj.style.textDecoration = "underline";
   return true;
}

function doMouseOutText(obj)
{
   obj.style.textDecoration = "none";
   return true;
}

function goBack()
{
   window.history.back();
   return true;
}

function current_selected(navObj)
{
   for(i = 0 ; i < navObj.all.length; i++) {
      if(navObj.all(i).innerText.charAt(0) == "[") 
         return i;
   }
   return -1;
}

function select(navObj, objSel)
{
/*
   var idx = current_selected(navObj);
   if(idx >= 0) 
      navObj.all(i).innerText = navObj.all(i).innerText.substring(1, navObj.all(i).innerText.length - 1);

//   objSel.innerText = "«" + objSel.innerText + "»";
   objSel.innerText = "[" + objSel.innerText + "]";
*/
}


function OpenWindow(url, winname, features) 
{
   window.open(url, winname, features);
}

//-->

