<!--
function dobmhp() {
    if (window.sidebar || document.all) {
        document.write('<a class=\"bm\" href=\"javascript:addFav()\">Bookmark</a>');
    }
}
function makeHome (hpUrl)
{
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage('http://' + document.domain + '/?hpset');
}
function addFav ()
{
    if (window.sidebar) {
        window.sidebar.addPanel(document.title,'http://' + document.domain + '/?bmset',"");
    }
    else if(document.all) {
        window.external.AddFavorite('http://' + document.domain + '/?bmset', document.title);
    }
    else {}
}
//-->