function createSREmail ()
{
	today		= new Date ();
	thisForm	= document.serviceForm;
	toField		= thisForm.toEmail.value;
	fromField	= thisForm.clientEmail.value;
	ccField		= thisForm.clientEmail.value;
	carDescrip	= thisForm.autoYear.value + "%20" +
		thisForm.autoMake.value + "%20" +
		thisForm.autoModel.value + "%20" +
		thisForm.autoTrim.value + "%20" +
		thisForm.autoBodystyle.options[thisForm.autoBodystyle.selectedIndex].text;
	subjField	= "Service%20Requested%20for%20a%20" + carDescrip;
	bodyField	=
		"New%20Service%20Request" +
		"Sent%20on:%20" + today.getMonth() + "%2f" + today.getDate() + "%20" + today.getHours() + "%20" + today.getMinutes() + "%20" +
//		"%0APriority%20Requested:%09" + thisForm.servicePriority.options[thisForm.servicePriority.selectedIndex].text +
//		"T%0Aime%20Available:%09" + thisForm.timeAvailable.value +
//				"%0ADates%20Requested:%09" + thisForm.datesRequested.value +
		"%0AService%20Requested:%09" + thisForm.serviceDescription.value;
	mailURL		=
		"mailto:" + toField +
		"?from=" + fromField +
		"&cc=" + ccField +
		"&subject=" + subjField +
		"&body=" + bodyField;
	window.location	= mailURL;
}