<!--
function openWnd2(url, w, h)
{
var wndHandle;
if (navigator.appName.indexOf("Explorer") >= 0) wndHandle=window.open(url,"nwWin"," width="+w.toString()+", height="+h.toString()+", scrollbars=no, toolbar=no, menubar=no, history=no, resizable");
else wndHandle=window.open(url,"s","height="+h.toString()+",width="+w.toString()+",resizable,scrollbars=yes");
}
function openWnd3(url, w, h)
{
var wndHandle;
if (navigator.appName.indexOf("Explorer") >= 0) wndHandle=window.open(url,"nwWin"," width="+w.toString()+", height="+h.toString()+", scrollbars=no, toolbar=no, menubar=no, history=no, resizable=no, left=500");
else wndHandle=window.open(url,"s","height="+h.toString()+",width="+w.toString()+",resizable,scrollbars=yes");
}

function fopenURL(url)
{
var w;
w=window.open(url,"nw","toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600");
w.focus();
return false;
}

function fClear() { window.status=""; return true; }
	
var itsloaded = 0;
function _doUnload()
{
	if (itsloaded == 1)
		doUnload();
}

function cpu(href) {
	if (opener) {
		opener.location=href;
		window.close();
		return false;
	}
	return true;
}
-->