function sendEmail() {
				document.StreetsOfSpeed.action = 'mailto: speeders@kstp.com' + '?subject=' + document.StreetsOfSpeed.subject.value; 
					document.StreetsOfSpeed.submit();  
					 
}

function sendFormEmail(theform) {
	theform.action = theform.action + '?subject=' + theform.prefixsubject.value + ' ' + theform.subject.value; 
	theform.submit();  
}

