// JavaScript Document
<!--
var aw = screen.availWidth;
var ah = screen.availHeight;
var vWidth = screen.width;
var vHeight = screen.height;
	
function lrgwindow (url, full, w, h) {
    var opts = "width="+ w +",height="+ h +",scrollbars=0";
    if(full == true) opts += ",fullscreen=1";
    //opts += ",top="+(ah-720)/2+",left="+(aw-1000)/2;
    opts += ",top=0,left=0";
    var ow = window.open(url,"ow",opts);
    ow.focus();
}

//-->