<!--
if (screen.width <= 640)
   document.write("<div id='left640'>");
if (screen.width >= 800 && screen.width < 1024)
   document.write("<div id='left800'>");
if (screen.width >= 1024 && screen.width < 1280)
   document.write("<div id='left1024'>");
if (screen.width >= 1280)
   document.write("<div id='left1280'>");
//-->

