function contact_form(live)
{
	var ok;
	var x = document.contact
	
	ok = check_form(x)
	if (ok)
		{
		var i = x.Area_of_Interest.selectedIndex;
		
		x.send_to.value = x.Area_of_Interest.options[i].value;
		x.area_interest.value = x.Area_of_Interest.options[i].text;

		if (live)
			{
			x.sendclient.value += ',' + x.send_to.value
			}
		}
			
			
	return ok;
}