var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
var doc = InternetExplorer ? window : window.document;

function resizeSpacer(hh){

    if(hh < 560){ hh=560; }
   
   imgElement='heightSpacer';
   document.images[imgElement].width = 1 + "px";
   document.images[imgElement].height = (hh - 1) + "px";

   var H;
   var W;
   H = window.innerHeight;
   W = window.innerWidth;
   if (navigator.appName.indexOf("Microsoft")!=-1) {
        H = document.body.offsetHeight;
        W = document.body.offsetWidth;
   }

   if(hh <= H){hh=H;};
   if(navigator.appName.indexOf("Internet Explorer") != -1){ // IE
        el=doc.flashcontent;
        ell=doc.resizecell;
   }else{
        el=doc.getElementById('flashcontent');
        ell=doc.getElementById('resizecell');
   }
   el.style.height = (hh - 1) + "px";    
   ell.style.height = (hh - 1) + "px";
}