function page_width() {
	return window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : null;
}

function show_hide_far_right() {
	//var far_right_trace_box = document.getElementById('new_cyan_head_TRACE');
	var far_right_box = document.getElementById('new_far_right');
	var the_far_width = page_width();
	
	//far_right_trace_box.innerHTML = 'MERA BANNERS (' + the_far_width + ')';
	
	if (the_far_width >= 1200) {
		far_right_box.style.display = 'block';
	} else {
		far_right_box.style.display = 'none';
	}
	
	//setTimeout("show_hide_far_right()",1000) 
	
}

show_hide_far_right();
