//<![CDATA[

	var seconds_container = document.getElementById("seconds");
	var timer;
	
	function dp_init_timer( current ) {
		
		clearTimeout( timer );
		
		if(! current ) {
			current = 59;
		}
		else if( current == 1 ) {
			window.location.reload();
			current--;
		}
		else
			current--;
			
		seconds_container.innerHTML = dp_twoDigitChecker( current.toString() );
			
		timer = setTimeout( "dp_init_timer(" + current + ")", 1000 );
	
	}
	
	function dp_twoDigitChecker( digit ) {
	
		return ( digit.length == 2 ) ? digit : "0" + digit;
	
	}
	
	function init_heightRenderer() {
	  			
		var flight_board_height = document.getElementById("flight_board").offsetHeight;
		
		var window_location = window.location.toString();
			window_location = ( window_location.indexOf("#") > 0 ) ? window_location.substring( 0, window_location.indexOf("#") ) : window_location;
			window_location = window_location + "#" + flight_board_height;
			
		window.location = window_location;
	
	}
	
	dp_init_timer();
	
//]]>

