// JavaScript Document

<!--
<!-- Begin

var str = "left=15,screenX=15,top=15,screenY=15";

if (window.screen) {
  var ah = screen.availHeight - 70;
  var aw = screen.availWidth - 50;
  str += ",height=" + ah;
  str += ",innerHeight=" + ah;
  str += ",width=" + aw;
  str += ",innerWidth=" + aw;
  str += ",resizable"; // so the user can resize the window manually
  str += ",scrollbars"; // so the user can scroll
} else {
  str += ",resizable"; // so the user can resize the window manually
}

function launchFull(url, name) {
  return window.open(url, name, str);
}

// var win = launchFull("full1.html", "full");

// -->
