function OpenMonitor(name)
{
   nname=navigator.userAgent;
   nversion=navigator.appVersion.substring(0,1);

   if ((nname.lastIndexOf("MSIE")==-1) || (nversion!=4))
   {
      myWindow = window.open(name,"my_jobsite_sub_window","toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=1,copyhistory=0,width=795,height=400,top=20,left=0,resizable=1");
      myWindow.focus();
   }
   else // IE 4 (but not 3 or 5) throws a security exception
   {    // when focusing on a window on another domain
        //
      myWindow = window.open(name,"","toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=1,copyhistory=0,width=795,height=400,top=20,left=0,resizable=1");
   }
}

function change_search_format(url)
{
   window.location = url;
}
