/* Even out columns for looks */
function twoColumn() {
	var Element = document.getElementById('BordersAndBody');
	Element.style.height = 'auto';
	var BiggestHeight = Element.offsetHeight;
	Element.style.height = BiggestHeight + "px";
}
// if IE, set direct to keep menu in place...
if (IEsucks) twoColumn();
// anything else, wait a micro second...
else setTimeout('twoColumn()', 100);
// one more time for good measure...
if (!IEsucks) setTimeout('twoColumn()', 2000);
// one more time for better measure...
if (!IEsucks) setTimeout('twoColumn()', 4000);
// one last time in case a dial up...
if (!IEsucks) setTimeout('twoColumn()', 8000);
onresize = function() { //Start Function onresize
	twoColumn();
	//window.location.replace(unescape(window.location.pathname));
} // End Function onresize
// Get heights after BiggestHeight (Leave here for IE problems)
document.write('<style>'
  + '#LeftBorderMain {'
  + '  height: 100%;'
  + '}'
  + '</style>');