function init() {
   if (document.getElementById("main")) {
   height = document.getElementById("main").offsetHeight;
   // alert(height);

   // document.getElementById("background").style.height=height+"px";
   if (document.getElementById("flashcontent0")) {
   document.getElementById("flashcontent0").style.height=height+"px";
   document.getElementById("background").style.visibility="visible";
   document.getElementById("background").style.display="block";
   }

   if (IE6) {
    // alert("IE6");
    document.getElementById("main").style.backgroundImage="url(uploads/sdx/textur.gif)";
    document.getElementById("topmargin").style.background="url(uploads/sdx/top_right.gif) no-repeat top right";
    document.getElementById("footer").style.backgroundImage="url(uploads/sdx/bottom_left.gif)";
   }
   }
}


/////// start
var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
window.onload = init;
