function OpenProductionReel()
{
window.open('http://www.mikeodmark.com/musicplayer.html', '', 'height=325,width=325,menubar=0,location=0,resizable=0,scrollbars=0,titlebar=0,status=0,toolbar=0');
}

function GoHome()
{
window.location = "index.php";
}

function SendMail()
{
var email = $('#txtEmail').val();
var content = $('#txtMessage').val();
if (email == '' || content == '') 
	{
	alert('Email and Message are both required.');
	return false;
	}
alert('Thank you. Your message is being sent.');
return true;
}