function fullsize() {
	var h = document.body.clientHeight - 77;
	var container = document.getElementById("content_container");
	container.style.height = h+"px";

	$('div#content').css('width', 'auto');
}

function buildComboboxesWithAjax(){
	return ConvertAllToCombobox();
}

var cook = new String(document.cookie);
document.cookie = "ajax_enabled=1";

$(document).ready(fullsize); 
if (!cook.match(/(^|\s)debug_nocombobox\=1(\;|$)/i)) $(window).ready(ConvertAllToCombobox);

window.onresize = fullsize;
