// ---------- Maximise Window ----------

function max_window(){

window.moveTo(0,0);

if (document.all) {	// IE4+
   top.window.resizeTo(screen.availWidth,screen.availHeight);
   }
else if (document.layers||document.getElementById) {	// NS4 OR (NS6+ or IE5+ (NB: already detected above))
   if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
      top.window.outerHeight = screen.availHeight;
      top.window.outerWidth = screen.availWidth;
      }
   }
}
