function take_there() 
{ 
   var destination=document.pages.pg_choice.value; 
   var version = navigator.appVersion; 
   // sets variable = browser version 
   if(destination!="no_page") 
   { 
      if (version.indexOf("MSIE") >= -1) 
      // checks to see if using IE 
      { 
         window.location.href=destination; 
      } 
      else 
      { 
         window.open(destination, target="_self"); 
      }    
   } 
} 
// -->