﻿// JScript File
 function pageOnLoad()  
         {  
           window.attachEvent("onresize",getWindowWidth);  
            getWindowWidth();  
          }  
function getWindowWidth(){
  var ww = 0;
  d = document;
   if ( typeof window.innerWidth != 'undefined' )
     ww = window.innerWidth;  // NN and Opera version
   else
   {
     if ( d.documentElement
       && typeof d.documentElement.clientWidth!='undefined'
       && d.documentElement.clientWidth != 0 )
       ww = d.documentElement.clientWidth;
     else
       if ( d.body
         && typeof d.body.clientWidth != 'undefined' )
         ww = d.body.clientWidth;
     document.getElementById("TopImg").style.width=(ww*94)/100;
   }
   return ww;
}
