function BookMark(){
		var mlocation = window.document.URL;
		var mtitle = document.title;
		
		if(window.external){
			window.external.AddFavorite(mlocation, mtitle);
		}else{ 
			alert("Sorry! Your browser doesn't support this function.");
  		}
	}