function ClearContact(Form) {
	if(Form.first_name.value=='First Name:')Form.first_name.value=''
	if(Form.last_name.value=='Last Name:')Form.last_name.value=''
	if(Form.email_addr.value=='E-mail:')Form.email_addr.value=''
	if(Form.real_addr.value=='Address:')Form.real_addr.value=''
	if(Form.city.value=='City:')Form.city.value=''
	if(Form.zip_code.value=='Zip:')Form.zip_code.value=''
}