

/* Contact message form validation */

function confirm_message_reset()
{
	var confirm_message = "Are you sure you really want to reset the contents of the form and start over?";
	
	var alert_message = "Your message has been cleared!";
	
	var confirmed = false;
	
	var firstname_obj = document.getElementById('fullname');
	
	confirmed = confirm(confirm_message);
	
	if (confirmed)
	{
		firstname_obj.focus();
		firstname_obj.select();
		
		alert(alert_message);
	}
	
	return confirmed;
}