
var $ = function(id)
{
	return document.getElementById(id);
}

var show_form = function()
{
	$('form').style.display = '';
	$('invite').style.display = 'none';
	$('all_ears').style.display = 'none';

	return false;
}

var submitIt = function()
{
	if($('message').value.length > 10){ $('theForm').submit(); }
}

var messageFocus = function(ta)
{
	if(ta.value == "Don't forget to include your contact details"){ $('sendButton').disabled = ''; ta.value = ''; }
}