// JavaScript Document

<!--
	function center_page() {  // function to center page_wrapper div in browser window...
	  var myWidth = 0, myHeight = 0;
	  if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
	  } else if( document.documentElement &&
		  ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	  }
		// center the content on the page
		var page_width				=		myWidth;
		var current_left			=		xLeft ("page_wrapper");
		var new_left				= (page_width-800)/2  // work out where the left of the page should be

		if (new_left <0) { new_left = 0;} // if position to move to is less than zero move to zero
		xLeft("page_wrapper",(new_left))
		xShow("page_wrapper")
	  return true
	}




//-->
