function navTo(url)
{
	var vNavToTag = document.getElementById("navToUrl");
	vNavToTag.value=url;
	
	var vNavToForm = document.getElementById('navToForm');
	vNavToForm.submit();
}

function size_to_fit()
{
	
	var tRows=document.getElementById('content_table').rows;
	var winHeight=document.body.clientHeight;
	var headHeight=tRows[0].style.height;
	headHeight=strrep(headHeight,'px',' ');
	var footHeight=tRows[2].style.height;
	footHeight=strrep(footHeight,'px','');
	var bodyHeight=winHeight-footHeight-headHeight-5;
	var vDiv=document.getElementById('scroll_pane');
	vDiv.style.height=bodyHeight-45;
}