// JavaScript Document
function addFav(){ 
	var url = location.href; 
	var title = document.title; 

	try{ 
	window.external.addFavorite(url, title); 
		}catch (e){ 
		try{ 
	window.sidebar.addPanel(title, url, ""); 
			}catch (e){ 
	alert("加入收藏失败，有劳您手动添加。"); 
			} 
		} 
} 

function AddToFavorite()   
{   
    if (document.all){   
       window.external.addFavorite(document.URL,document.title);   
    }else if (window.sidebar){   
       window.sidebar.addPanel(document.title, document.URL, "");   
    }   
}

/*function block(oEvent){
	if(window.event){
		oEvent = window.event;
		oEvent.returnValue = false;	//取消默认事件
	}else
		oEvent.preventDefault();	//取消默认事件
}
document.oncontextmenu = block;*/





