var tv_show_counter = 10;
function counter_for_tv_show() {
	if (tv_show_counter > 0) {
		tv_show_counter -= 1;
		$('clock').innerHTML = "Please wait... " + tv_show_counter;
		var interval = setTimeout("counter_for_tv_show()", 1000);
	} else {
		$('clock').hide();
		$('download_link').show();
	}
}
