function setAsHome(myLink)
{
        if(navigator.appName.indexOf('Microsoft')!=-1)
        {
               // IE
               myLink.style.behavior='url(#default#homepage)';
               myLink.setHomePage('http://www.wormportal.com');
        }
        else if(navigator.appName.indexOf('Netscape')!=-1)
        {
               // Netscape / firefox browsers
               var msg = "Just drag this link onto your 'home' ";
               msg += "button to set this page as your ";
               msg += "default homepage!";
               alert(msg);
        }
        else if(navigator.appName.indexOf('Opera')!=-1)
        {
               // Opera
               var msg = "Please go to Tools - Preferences ";
               msg += "- General and click 'Use current' ";
               msg += "to set this as your homepage! ";
               alert(msg);
        }
        else
        {
               // Other browsers
               var msg = "Sorry, your browser doesn't allow ";
               msg += "scripts to set the default homepage. ";
               msg += "Please use your browser's 'options' dialog ";
               msg += "to do it! Thank you for your patience. ";
               alert(msg);
        }
}

