 // windoww = document.documentElement.clientWidth;
 // document.write(windoww);
 
 function FullScreen(){
  window.moveTo(0,0);  // self.moveTo(0,0);  this.moveTo(0,0); 
  if (document.all) {
   top.window.resizeTo(screen.availWidth,screen.availHeight);
  } else {
     resizeTo(screen.availWidth,(screen.availHeight-5));
    }
  }

 //  function alertSize() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
  //Non-IE
    windoww = window.innerWidth;
    windowh = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    windoww = document.documentElement.clientWidth;
    windowh = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    windoww = document.body.clientWidth;
    windowh = document.body.clientHeight;
  }

  
//  if ((windoww<675) || (windowh<675)) {
//  if (document.all) {
//   top.window.resizeTo(675,screen.availHeight);
//  } else {
//     resizeTo(screen.availWidth,(screen.availHeight-5));
//    }
//  }  
// window.alert( 'Width = ' + myWidth );
// window.alert( 'Height = ' + myHeight );
//}