<!--
// This function calls up the form to send the URL of this page to someone.
function showForm() {
// Construct the form callup URL getting the URL of this page
//  and adding it as a search field in the url of the form.
// Search parameters in a URL follow a ? placed after the URL.
	var url = "http://www.wiredsafety.org/forms/email_page.html?" + document.location;
	newWin = window.open(url,"mailWin","scrollbars=yes,status=yes,width=375,height=425")
}
//-->