// UTF-8 中文

function el(eId){	return document.getElementById(eId); }

function setFavo()
{
	try{
		//alert('AddFavorite');
		window.external.AddFavorite(window.document.location,window.document.title || window.document.location);
	}catch(e){
		alert(e.message);
	}
}

function setHomepage(el)
{
	try{
		el.style.behavior='url(#default#homepage)';
		el.sethomepage(window.document.location);
		return false;
		//window.document.links[0].style.behavior= 'url(#default#homepage)'); 
		//window.document.links[0].setHomePage(window.document.location);
	}catch(e){
	}
}
