function clickIE(){
	if(document.all){
		return false;
	}
}
function clickNS(e){
	if(document.layers||(document.getElementById&&!document.all)){
		if(e.which>1){
			return false;
		}
	}
}
function disableRightClick(){
	document.oncontextmenu=new Function("return false;");
	
	if(document.layers){
		document.captureEvents(event.mousedown);
		document.onmousedown=clickNS;
	}else{
		document.onmouseup=clickNS;
		document.oncontextmenu=clickIE;
	}
}

//disableRightClick();

function CreateBookmarkLink(strTitle,strUrl){
	window.external.AddFavorite(strUrl,strTitle);
}

