function displayAddress(name,domain) {	document.write(name + '@' + domain);}function contaq(name,domain,subj,displayStr,italics) {	document.write('<A HREF="mailto:');	displayAddress(name,domain);	if (subj) {		document.write('?subject=' + subj);	}	document.write('">')	if (italics) {		document.write('<i>');	}	if (displayStr) {		document.write(displayStr);	}		else {		displayAddress(name,domain);	}	if (italics) {		document.write('</i>');	}	document.write('</A>');}function writeWebStarMailAddrTag(type,name,domain) {	document.write('<input type="hidden" name="');	document.write(type);	document.write('" size="-1" value="');	displayAddress(name,domain);	document.write('">');}function loadBody()	{	var theValue;	var str;	theValue = document.registrationForm.WSguidelines.value;	str = "Workshop Guidelines QTY:\t" + theValue + "\r";	theValue = document.registrationForm.SEmono.value;	str += "Sterling Editions Monograph QTY:\t" + theValue + "\r";	theValue = document.registrationForm.CEChandout.value;	str += "CEC Handout QTY:\t" + theValue + "\r";	theValue = document.registrationForm.demoCD.value;	str += "Special Needs Software Demo CD QTY:\t" + theValue + "\r\r";	theValue = document.registrationForm.nameFirst.value;	str += "First Name:\t" + theValue + "\r";	theValue = document.registrationForm.nameLast.value;	str += "Last Name:\t" + theValue + "\r";	theValue = document.registrationForm.org.value;	str += "Organization:\t" + theValue + "\r";	theValue = document.registrationForm.title.value;	str += "Title/Department:\t" + theValue + "\r";	theValue = document.registrationForm.addr.value;	str += "Address:\t" + theValue + "\r";	theValue = document.registrationForm.city.value;	str += "City:\t" + theValue + "\r";	theValue = document.registrationForm.state.value;	str += "State/Province:\t" + theValue + "\r";	theValue = document.registrationForm.postalCode.value;	str += "Zip/Postal Code:\t" + theValue + "\r";	theValue = document.registrationForm.country.value;	str += "Country:\t" + theValue + "\r";	theValue = document.registrationForm.phoneNum.value;	str += "Phone:\t" + theValue + "\r";	theValue = document.registrationForm.emailAddr.value;	str += "E-mail Address:\t" + theValue + "\r\r";	theValue = document.registrationForm.profPopup.value;	str += "Profession:\t" + theValue + "\r";	theValue = document.registrationForm.profOther.value;	str += "Other profession:\t" + theValue + "\r";	theValue = document.registrationForm.locationPopup.value;	str += "Location:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.ageBirth3.checked) {theValue = "Y"};	str += "work w/Birth-3:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.age35.checked) {theValue = "Y"};	str += "work w/3-5:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.age512.checked) {theValue = "Y"};	str += "work w/5-12:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.age12plus.checked) {theValue = "Y"};	str += "work w/Over 12:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.ageAdult.checked) {theValue = "Y"};	str += "work w/Adult:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.IntEmotCheck.checked) {theValue = "Y"};	str += "Emotional Disturbance/Autism/PDD:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.IntHearCheck.checked) {theValue = "Y"};	str += "Hearing Impairments:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.IntMentCheck.checked) {theValue = "Y"};	str += "Mental Retardation:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.IntSevCheck.checked) {theValue = "Y"};	str += "Severe/Profound Handicaps:\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.IntDemCheck.checked) {theValue = "Y"};	str += "Dementia\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.IntAphCheck.checked) {theValue = "Y"};	str += "Aphasia/Head Trauma\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.IntLLDCheck.checked) {theValue = "Y"};	str += "Language-Learning Disabilities\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.IntESLCheck.checked) {theValue = "Y"};	str += "English as a Second Language\t" + theValue + "\r";	theValue = "N";	if (document.registrationForm.IntSLICheck.checked) {theValue = "Y"};	str += "Specific Language Impairments\t" + theValue + "\r";	               	theValue = document.registrationForm.IntOtherText.value;	str += "Other interest:\t" + theValue + "\r";	document.emailForm.Body.value = str;	return true	}
