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();
}

function submitATVForm()
{
	if ( document.enter_contest.contestant.value.length == 0 ) {
		alert( "Please enter your email address." );
		return false;
	}

	return true;
}

function redirectToDownload()
{
	document.location.href = "download.php";
}

function articleVote( article_id, up_down )
{
	$.ajax({
		url : "support.php?article=" + article_id + "&" + ( up_down == 'up' ? 'upvote=1' : 'downvote=1' )
	});
	$("#article_vote p").text( 'Thanks for your feedback!' );
}

$(document).ready(function() {
	$(".video").addClass( 'iframe' );
	$(".video").fancybox({
		width: 895,
		height: 500,
		scrolling: 'no'
	});
	$("div.ss_box a").fancybox();
	
	
});


