function reloadPage () {
	var tmp = getX("right_margin");
//	alert (tmp + '  ' + disp_wth);
//	var debug_id = document.getElementById ('debug4');
//	debug_id.innerHTML = 'getX = ' + x;
//	document.getElementById("search").value = tmp;
	if (tmp != disp_wth) {
		disp_wth = tmp;
		setTimeout('resizeIt()',250);
		}
	}
	
function resizeIt () {
	var max_wth = 1100;
	disp_wth = getX ("right_margin");
//	document.getElementById("search").value = disp_wth;
//	alert (disp_wth);
//	var debug_id = document.getElementById ('debug4');
//	if (debug) debug_id.innerHTML = disp_wth;
	if (disp_wth > (max_wth + 20)) {
//			document.location = "fluid_test.php?wth=clip";
		document.getElementById("content_table").width = max_wth + 'px';
		}
	else document.getElementById("content_table").width = "100%";
//	MM_showHideLayers('table_container','','show');
	}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
	}