/**
  Pl:
  <a href="http://www.asdf.com" onclick="javascript:setLinkToHomePage(this);return false;">Set my homepage</a>
*/
function setLinkToHomePage(link) {
    // If IE
    if (document.all){
        link.style.behavior="url(#default#homepage)";
        link.setHomePage(link.href);
    }
    // If it's Netscape 6, tell user to drag link onto Home button
    else if (document.getElementById){
        alert("Drag this link onto your Home button to make this your Home Page.")
    }
    // If it's Netscape 4 or lower, give instructions to set Home Page
    else if (document.layers){
        alert("<b>Make this site your home page:</b><br>- Go to <b>Preferences</b> in the <B>Edit</B> Menu.<br>- Choose <b>Navigator</b> from the list on the left.<br>- Click on the <b>\"Use Current Page\"</b> button.")
    }
    // If it's any other browser, for which I don't know the specifications of home paging, display instructions
    else {
        alert("<b>Make this site your home page:</b><br>- Go to <b>Preferences</b> in the <B>Edit</B> Menu.<br>- Choose <b>Navigator</b> from the list on the left.<br>- Click on the <b>\"Use Current Page\"</b> button.")
    }
}
