function ChangeContactMethod(which) {
	//alert(which);
	switch (which) {
		case 'email':
			html = '<label for="email"><span>Email: </span><input type="text" name="email" id="email"';
			if (typeof(POST_email) != 'undefined') {
				html += ' value="'+POST_email+'"';
			}
			html += ' /></label><br />';
			break;
		case 'phone':
			html = '<label for="phone"><span>Phone: </span><input type="text" name="phone" id="phone"';
			if (typeof(POST_phone) != 'undefined') {
				html += ' value="'+POST_phone+'"';	
			}
			html += ' /></label><br />';
			break;
	}
	//alert(html);
	div = document.getElementById('contact_method');
	div.innerHTML = html;
}

function ChangeMailTo(which) {
	field = document.forms['contact_form'].mailTo;
	switch (which) {
		case 'general':
			field.value = 'ron.wright@nixongear.com';
			break;
		case 'nixon':
			field.value = 'ron.wright@nixongear.com';
			break;
		case 'oliver':
			field.value = 'john.barrett@olivergear.com';
			break;
	}
}
						
							
						
						
					