
function printPage(){
	window.print();
}//printPage


function bookmarkPage(){
	if (((navigator.appName.indexOf("IE")>=0)||(navigator.appVersion.indexOf("IE")>=0)) && (navigator.appVersion.substring(0,4) >= 4)) {
		window.external.AddFavorite(window.location.href, document.title);
	} else {
		window.alert("You must manually add this page to your bookmarks list\nReason: Browser does not support bookmark automation.");
	}
}//bookmarkPage
