<!-- BEGIN hide
// Script by Joel Samuel - Web Designer:
// joel@mill-sol.com
// Millenium Solutions
// http://www.mill-sol.com
// Credit must stay intact.
// Copyright held.
// resize window to max screen (800x600)

function reSize800() {
  var width = screen.width;
  var curHeight = screen.availHeight;
  var curWidth = screen.availWidth;

  if (width > 800) {
    window.self.parent.resizeTo(800, 600);
    window.self.parent.moveTo((curWidth - 800)/2,(curHeight - 600)/2);
  }
  else {
    window.self.parent.moveTo(0,0)
    window.self.parent.resizeTo(curWidth, curHeight);
  }
}

// Script by Joel Samuel - Web Designer:
// joel@mill-sol.com
// Millenium Solutions
// http://www.mill-sol.com
// Credit must stay intact.
// Copyright held.
// resize window to max screen (1024x768)

function reSize1024() {
  var width = screen.width;
  var curHeight = screen.availHeight;
  var curWidth = screen.availWidth;
  
  if (width > 1024) {
    window.self.parent.resizeTo(1024, 768);
    window.self.parent.moveTo((curWidth - 1024)/2,(curHeight - 768)/2);
  }
  else {
    window.self.parent.moveTo(0,0)
    window.self.parent.resizeTo(curWidth, curHeight);
  }
}
// END hiding -->

