
//popup window for emailing
function emailWindow(pageTitle) {
	var loc = self.location;
	emailWin = window.open("http://www.cars-rp.org/util/emailpage.php?fromURL="+ escape(loc) +"&pagetitle="+escape(pageTitle), "emailWindow", "width=280,height=500");
	if (window.focus) { emailWin.focus() }
}

/* print */
function printThisPage() {
	pWindow = window.open('','printWindow');
	dpt = document.getElementById('contentBox');
	document.printThisPageForm.printHTML.value = dpt.innerHTML;
	document.printThisPageForm.submit();
}
