function popMovieWithName( movie_name )
{
	var width  = 1024;
	var height = 768 + 16;
	var top    = screen.height / 2 - height / 2;
	var left   = screen.width / 2 - width / 2;

	window.open( 'movies/' + movie_name, 'directmailmovie', 'toolbar=0,status=0,width=' + width + ',height=' + height + ',top=' + top + ',left=' + left );
}

function submitSupportForm()
{
	if ( document.contact_us.sender.value.length == 0 ) {
		alert( "Please enter your email address (otherwise we won't be able to get back to you)." );
		return;
	}

	document.contact_us.submit();
}