<!-- begin hide here for non-Javascript-enabled browsers
res800x600 = false;
var str;
if ( screen.width <= 800 || screen.height <= 600 ) {
    res800x600 = true;

    str = "left=0,screenX=0,top=0,screenY=0,scrollbars=auto,toolbar=no,location=no,directories=no,status=no,";
}
else {
    str = "left=0,screenX=0,top=0,screenY=0,channelmode=yes,scrollbars=auto,toolbar=no,location=no,directories=no,status=no";
}

if (window.screen) {
  var ah = screen.availHeight - 30;
  var aw = screen.availWidth - 10;
  str += ",height=" + ah;
  str += ",innerHeight=" + ah;
  str += ",width=" + aw;
  str += ",innerWidth=" + aw;
} else {
  str += ",resizable"; // so the user can resize the window manually
}

function launchFull(url, name) {
  var win = window.open(url, name, str);
}

//var win = launchFull("movie/home.html", "skyhd");

