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