// JavaScript Document
function sc(){
	var sURL = window.location;
	var sTitle = "上海惠高阀门有限公司";
	if(document.all)
		window.external.AddFavorite(sURL, sTitle); 
	else
		window.sidebar.addPanel(sTitle, sURL, "");	
}

function sy(){
	var sURL = "http://www.huigao-v.com";
	var sTitle = "上海惠高阀门有限公司";
	if (document.all){
			document.body.style.behavior='url(#default#homepage)';
	  		document.body.setHomePage(sURL);
		}
	else if (window.sidebar){
		if(window.netscape){
			try{  
				netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");  
			}  
			catch (e){  
				alert( "" );  
			}
		} 
		var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
		prefs.setCharPref('browser.startup.homepage',sURL);
	 }
}

