
//popup window for emailing
function emailWindow(pageTitle) {
	var loc = self.location;
	emailWin = window.open("/util/emailpage.php?fromURL="+ escape(loc) +"&pagetitle="+escape(pageTitle), "emailWindow", "width=280,height=500");
	if (window.focus) { emailWin.focus() }
}

//bookmark 
function bookMarkThisPage() {
	var url = document.location.toString();
	var title = document.title;
	if (document.all && parseInt(navigator.appVersion) >= 4) {
		window.external.AddFavorite(url,title);
	} else if (navigator.appName == "Netscape") {
		alert("You must press CTRL-D to bookmark this page");
	}
}

/* print */
function printThisPage() {
	pWindow = window.open('','printWindow');
	dpt = document.getElementById('contentBox');
	document.printThisPageForm.printHTML.value = dpt.innerHTML;
	document.printThisPageForm.submit();
}

