﻿// JScript 文件
function GetWebSiteUrl()
{
    var strURL = window.location;
    location.href = "http://" + strURL.host;
}
/// 设为首页
function HomePage(obj)
{
    obj.style.behavior='url(#default#homepage)';
    obj.setHomePage(GetWebSiteUrl())
}
// 加入收藏
function Favorite()
{
    window.external.AddFavorite(GetWebSiteUrl(), window.document.title)
}