function swap_video(thumb)
{
	var video_id = thumb.id;
	var thumb_img = $(thumb).children('img')[0];
	
	$(thumb).attr('href', 'http://tv.portaventuraholidays.com/play-' + loaded_video_id);
	
	thumb.id = loaded_video_id;
	thumb_img.src = 'http://tv.portaventuraholidays.com/thumbs/' + loaded_video_id;
	
	$('#homepage_video_holder').html('<embed src="http://tv.portaventuraholidays.com/swf/flvplayer3.swf" width="303" height="215" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="autostart=false&amp;repeat=false&amp;refresh=1228743848&amp;overstretch=true&amp;type=flv&amp;allowfullscreen=true&amp;image=http://tv.portaventuraholidays.com/thumbs/' + video_id + '&amp;file=http://tv.portaventuraholidays.com/flv/' + video_id + '" />');
	
	loaded_video_id = video_id;
}

function show_email_terms()
{
	newwindow=window.open(
		'email_submit.php?email_address=' + escape(document.getElementById('email_address').value).replace(/\+/g, '%2B'),
		'name',
		'height=500,width=500,top=200,left=300,resizable, scrollbars=1'
	);
	if (window.focus) { newwindow.focus(); }
}