
	
	function popupWindow(url,name,width,height,resize,scrollbars) {
		newwindow=window.open(url,name,'height='+height+',width='+width+',resizable='+resize+',scrollbars='+scrollbars);
		if (window.focus) {newwindow.focus()}
	}

	//popup window for emailing
	function emailWindow(pageTitle) {
		var loc = self.location;
		emailWin = window.open("http://cars-rp.org/util/emailpage.php?fromURL="+ escape(loc) +"&pagetitle="+escape(pageTitle), "emailWindow", "width=280,height=516,scrollbars=1,resizable=1");
		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();
	}

