function OpenWindow(page,width,height) {
	OpenWin = this.open(page, "CtrlWindow", "height="+height+",width="+width+",marginheight=0,marginwidth=0,left=200,top=139,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no");
	OpenWin.focus();
}

function StartAuto(page) {
OpenWin = this.open(page, "CtrlWindow", "height=490,width=450,marginheight=0,marginwidth=0,left=200,top=75,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
	OpenWin.focus();
}

function OpenWindow2(page,width,height) {
	OpenWin = window.open(page, "CtrlWindow2", "height="+height+",width="+width+",marginheight=0,marginwidth=0,left=200,top=139,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no");
	OpenWin.focus();
}