
	// if higher than 675px, mcguyver the centerer to top-justify
	// (load AFTER CSS)
		var myHeight = 0;
		if (typeof(window.innerHeight) == 'number')
			// Non-IE
			myHeight = window.innerHeight;
		else if (document.documentElement && document.documentElement.clientHeight)
			// IE
			myHeight = document.documentElement.clientHeight;
		if (myHeight < 675) {
			document.write('<style type="text/css">');
			document.write('#centerer { top: 0; margin-top: 0; }');
			document.write('</style>');
		}
