function IndexOfSelected(selectObject) {
   var numberSelected=0
   for (i=0; i < selectObject.options.length; i++) {
      if (selectObject.options[i].selected==true)
         numberSelected = i
   }
   return numberSelected
}

function LoadNewPage(URL1)
     {  
      window.document.location.href = URL1;
     }


function LoadInFrame(URL1,F1)
{  
var InternetExplorer =  navigator.appName.indexOf("Netscape") == -1;
var version = parseInt(navigator.appVersion);

if (InternetExplorer) {
     // Explorer
//     if (version < 4) {
//        parent.main.location.href = URL1;
//     }
//     else {
    parent.location.href = URL1;
//     }
  } else {
// Netscape 4
//    parent.frames[F1].location.href = URL1;
    parent.location.href = URL1;
  }
 }
 
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
