function SendEmail()
{
	var mail1 = 'to:';
	var mail0 = 'mail';
	var add2 = '.com'
	var add1 = 'tcsounds'
	var add0 = 'kyle@';	
	var subject = 'TC Sounds OEM Information Submission';
	var mailer = mail0 + mail1 + add0 + add1 + add2 + '?subject=' + subject + '&body=' + 

' Name:\t ' + document.jsform.visitorname.value + 
'\n\n' + 
' Email:\t ' + document.jsform.email.value + 
'\n\n' + 
' Company:\t ' + document.jsform.company.value + 
'\n\n' + 
' Message:\n\n ' + document.jsform.message.value +
'\n\n';
	parent.location = mailer;
} // -->// JavaScript Document