<!--

if (screen.width <= 800 )
{
	document.write('<style type="text/css">\n body {margin: 0px;} \n</style>');
}

window.onload=fnInit;

function fnInit(){
   var ie7 = (document.all && !window.opera && window.XMLHttpRequest) ? true : false;

   if (ie7) {
   	logo.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");
   	spacer.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");
   	top_wrapper.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");
   	wrapper.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");
   	footer.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");
   }
   else {
   	logo.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");
   	spacer.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");
   	top_wrapper.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");
   	wrapper.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");
   	footer.style.setExpression("width", "document.body.clientWidth < 900 ? '900px' : '100%'");   
   }
   
   document.recalc(true);
}
-->
