function bookmarkPage() {
	
	var get_title = document.title;
	var get_url = window.location.href;

	if (window.sidebar) { // firefox
		window.sidebar.addPanel(get_title, get_url,"");
	} else if( document.all ) { //MSIE
		window.external.AddFavorite( get_url, get_title);
	} else {
		   alert("Sorry, your browser doesn't support this");
	}
}

function printPage() {
	window.print();  
}

