<!--
	var user_fields = new Array;
	add_fields('title','Title','short_text',1,255);
	add_fields('firstname','First name','short_text',1,255);
	add_fields('surname','Surname','short_text',1,255);
	add_fields('organisation','Organisation','short_text',0,255);
	add_fields('job_title','Job title','short_text',1,255);
	add_fields('speciality','Speciality','short_text',0,255);
	add_fields('address1','Address','short_text',1,255);
	add_fields('address2','Address 2','short_text',0,255);
	add_fields('address3','Address 3','short_text',0,255);
	add_fields('city','Town','short_text',1,255);
	add_fields('county','County','short_text',0,255);
	add_fields('postcode','Postcode','short_text',1,255);		
	add_fields('country','Country','short_text',1,255);	
	add_fields('email','Email','email',1,255);
	add_fields('phone','Telephone','short_text',0,255);
	add_fields('fax','Fax','short_text',0,255);	
	add_fields('hear_about','How did you hear about us','short_text',1,155);	
	
	function hearme(m){				
		if(m=='Other'){
		document.getElementById('div_hear_about_other').style.display='block';
		}
		else{
		document.getElementById('div_hear_about_other').style.display='none';				
		}			
	}
	
	function jobOther(m){				
		if(m=='Other'){
		document.getElementById('div_job_title_other').style.display='block';
		}
		else{
		document.getElementById('div_job_title_other').style.display='none';				
		}
	}
//-->

