// JavaScript Document
function addBookmark(title,url) {
	var ua=navigator.userAgent.toLowerCase();
	
if (window.sidebar) { 
	window.sidebar.addPanel(title, url,""); 
}else if( window.external ) { 
	if(ua.search("chrome")!='-1'){
		alert('Press ctrl+D to bookmark this page.')
	}else{
		window.external.AddFavorite( url, title); 
	}
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
}
