// JavaScript Document
<!--
function wopen(url, w, h, name)
{
        // Fudge factors for window decoration space.
        w += 32;
        h += 96;
	h += 50;
		x = (screen.availWidth/2)-w
		y = (screen.availHeight/2)-(h/2)
	var win = window.open(url,
		name, 
		'width=' + w + ', height=' + h + ', ' +
		'location=no, menubar=no, ' +
		'status=no, toolbar=no, scrollbars=yes, resizable=no, screenX=' + x + ', screenY=' + y + ', left=' + x + ', top=' + y);
	win.resizeTo(w, h);
	win.focus();
}

// -->
