function set_siteshuffle_home(link, ssobj) {
   var home_link = link
   var agt=navigator.userAgent.toLowerCase();
   var is_major = parseInt(navigator.appVersion);
   var is_minor = parseFloat(navigator.appVersion);
   var is_aol7  = (agt.indexOf("aol 7") != -1);
   var is_aol8  = (agt.indexOf("aol 8") != -1);
   var is_newerAOL = (is_aol7 || is_aol8);

   var is_nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1) && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));

   var is_nav4up = (is_nav && (is_major >= 4));
   var is_nav6up = (is_nav && (is_major >= 5));

   var is_ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));

   var is_ie3 = (is_ie && (is_major < 4));
   var is_ie4 = (is_ie && (is_major == 4) && (agt.indexOf("msie 5")==-1) );
   var is_ie4 = (is_ie && (is_major == 4) && (agt.indexOf("msie 5")==-1) && (agt.indexOf("msie 6")==-1));

   var is_ie5up  = (is_ie && !is_ie3 && !is_ie4);
   var is_win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );

   var is_win31 = ((agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("win16")!=-1) || (agt.indexOf("windows 16-bit")!=-1));

   var is_mac = (agt.indexOf("mac")!=-1);

   if (is_win && is_ie4) { 
      //alert("You need to drag the link: " + link) 
    //top.location.href = "browsers";
          }
   else if (is_mac && is_ie) {
      alert("You need to drag the link: " + link) 
   }

   else if (is_newerAOL) { top.location.href = "other_browser"; }

   else if (is_win && is_ie5up) {
      ssobj.style.behavior='url(#default#homepage)';
      ssobj.setHomePage(link);
      //parent.close();
   	}

   else if (is_win && is_nav6up) { 
      alert("You need to set your start page manually: " + link) 
     //top.location.href = "browsers";
        }

   else if (is_win && is_nav4up) {
      alert("You need to set your start page manually: " + link) 
      //top.location.href = "browsers";
          }

   else if (is_mac && is_nav4up) { 
      alert("You need to set your start page manually: " + link) 
      //top.location.href = "browsers";
        }

   else {
      alert("You need to set your start page manually: " + link) 
     //top.location.href = "browsers";
        }

}
