viewportwidth = null;
viewportheight = null;
function decideSizes(){}
function getDimensions() {
if (typeof window.innerWidth != 'undefined')
 {
      viewportwidth = window.innerWidth,
      viewportheight = window.innerHeight
 }
 else if (typeof document.documentElement != 'undefined'
     && typeof document.documentElement.clientWidth !=
     'undefined' && document.documentElement.clientWidth != 0)
 {
       viewportwidth = document.documentElement.clientWidth,
       viewportheight = document.documentElement.clientHeight
 }
 else
 {
       viewportwidth = document.getElementsByTagName('body')[0].clientWidth,
       viewportheight = document.getElementsByTagName('body')[0].clientHeight
 }
decideSizes();
}
window.onload = getDimensions();

<!--
if (document.images)
{
  pic1= new Image(400,200); 
  pic1.src="/images/loading_trans.gif"; 
}
//-->
