function ChangeContactMethod(which) {
	//alert(which);
	switch (which) {
		case 'email':
			html = '<label for="email"><span><span class="required">';
			html += '<img src="/rsform/required.gif" width="12" height="12" alt="*" />';
			html += '</span>Email Address: </span><input type="text" name="email_address" id="email_address"';
			if (typeof(POST_email) != 'undefined') {
				html += ' value="'+POST_email+'"';
			}
			html += ' /></label><br />';
			break;
		case 'phone':
			html = '<label for="phone"><span><span class="required">';
			html += '<img src="/rsform/required.gif" width="12" height="12" alt="*" />';
			html += '</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;
}



						
							
						
						
					
