function bm() {
	if (navigator.appName == "Netscape") {
		alert('Please press the <Ctrl><D> keys together to bookmark this page.');
	}
	else {
		window.external.AddFavorite('http://www.cranbury.info/', 
			'The Cranbury Forum (www.cranbury.info)');
	}
}

function myPopup() {
    var win = open("email_form.html", "EmailPage", 
		"height=250, width=700, resizable=0, left=300, top=200");
    win.focus();
}

