function Start(page) 
{
	OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
	window.moveBy(-10,-10);

}

function OpenWindow(page,ww,hh) 
{
        features = "height="+hh+",width="+ww+",toolbar=yes,status=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes";
	OpenWin = this.open(page, "CtrlWindow", features);
	//OpenWin.moveBy(+100,+100);
	return;
}

function OpenWindowHelp(page,ww,hh) 
{
        features = "height="+hh+",width="+ww+",toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes";
	OpenWin = this.open(page, "CtrlWindow", features);
	//OpenWin.moveBy(+100,+100);
	return;
}
