function addfavorite() {
var Sys = {};
var ua = navigator.userAgent.toLowerCase();
var s;
(s = ua.match(/msie ([\d.]+)/)) ? Sys.ie = s[1] :
(s = ua.match(/firefox\/([\d.]+)/)) ? Sys.firefox = s[1] :
(s = ua.match(/chrome\/([\d.]+)/)) ? Sys.chrome = s[1] :
(s = ua.match(/opera.([\d.]+)/)) ? Sys.opera = s[1] :
(s = ua.match(/version\/([\d.]+).*safari/)) ? Sys.safari = s[1] : 0;
//判断各大浏览器
if (Sys.ie) {
add();
};
if (Sys.firefox) {
add();
};
if (Sys.chrome) {
alert("抱歉,您所使用的是Google浏览器,将无法完成此操作。\n\n您需要手动将' http://www.chnjinju.com '加入收藏。");
};
if (Sys.opera) {
add();
};
if (Sys.safari) {
add();
};
}
function add() {
if (document.all && window.external) {
window.external.addFavorite('http://www.chnjinju.com', '中国晋剧艺术网-独家晋剧艺术门户网站');
}
else if (window.sidebar) {
window.sidebar.addPanel('中国晋剧艺术网-独家晋剧艺术门户网站', 'http://www.chnjinju.com', "");
}
}
//设为首页
function SetHome(obj) {
try {
obj.style.behavior = 'url(#default#homepage)';
obj.setHomePage('http://www.chnjinju.com');
} catch (e) {
if (window.netscape) {
try {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
} catch (e) {
alert("抱歉,此操作被浏览器拒绝!\n\n请在浏览器地址栏输入“about:config”并回车然后将[signed.applets.codebase_principal_support]设置为'true'");
};
} else {
alert("抱歉,您所使用的浏览器无法完成此操作。\n\n您需要手动将' http://www.chnjinju.com '设置为首页。");
};
};
};