function submitcommunication()
{
	document.forms.ecommunication.businessname.value=removeblanks(document.forms.ecommunication.businessname.value);
	if (IsEmpty(document.ecommunication.businessname)) {
		alert("Business Name may not be blank.");
		return false;
	}
	document.forms.ecommunication.phone.value=removeblanks(document.forms.ecommunication.phone.value);
	if (IsEmpty(document.ecommunication.phone)) {
		alert("Phone may not be blank. ");
		return false;
	}
	
	document.forms.ecommunication.description.value=removeblanks(document.forms.ecommunication.description.value);
	if (IsEmpty(document.ecommunication.description)) {
		alert("Description may not be blank.");
		return false;
	}
	document.forms.ecommunication.action="cgi/gdform.cgi";
	document.forms.ecommunication.submit();
	
}