function drawLogonWindow(){

	document.write('	<!-- ОКНО Авторизированного Входа -->');
	document.write('<div id="logon_window" style="position:absolute;top:50;width:100%;z-index:1001;visibility:hidden;" align="center">');
	document.write('<form name="f" action="/authorized/" method="post">');
	document.write('	<div style="width:350;height:170;background:#333333;">');
	document.write('	<table bgcolor="white" width="350" height="170" cellpadding="0" cellspacing="3" style="border:solid black 1px;position:relative;left:-3;top:-3;">');

	document.write('		<tr>');
	document.write('			<td colspan=4 align=center valign=bottom height=30 style="font-size:15px;font-weight:Bold;color:#3B5F7E;"><img src="/img/lock2.gif" width=10 height=14 align="absmiddle" hspace="5">Авторизированный вход</td>');
	document.write('		</tr>');

	document.write('		<tr><td colspan=4><img width=0 height=20></td></tr>');

	document.write('		<tr>');
	document.write('			<td width=40><img width=1 height=0></td>');
	document.write('			<td align=left valign=middle>Логин:&nbsp;&nbsp;</td>');
	document.write('			<td><input type="Text" name="login" style="width:200;height:22;"></td>');
	document.write('			<td width=40><img width=1 height=0></td>');
	document.write('		</tr>');

	document.write('		<tr>');
	document.write('			<td width=40><img width=1 height=0></td>');
	document.write('			<td align=left valign=middle>Пароль:&nbsp;&nbsp;</td>');
	document.write('			<td><input type="Password" name="password" style="width:200;height:22;"></td>');
	document.write('			<td width=40><img width=1 height=0></td>');
	document.write('		</tr>');
		
	document.write('		<tr>');
	document.write('			<td width=40><img width=1 height=0></td>');
	document.write('			<td><img width=1 height=0></td>');
	document.write('			<td><img width=0 height=5><br>');
	document.write('				<input type="Submit" value="Войти" style="width:70;height:22;"><img width=7 height=0><input type="Button" value="Закрыть" style="width:80;height:22;"');
	document.write('				onclick="showLogonWindow(false);";');
	document.write('				></td>');
	document.write('			<td width=40><img width=1 height=0></td>');
	document.write('		</tr>');
		
	document.write('		<tr><td colspan=4><img width=0 height=25></td></tr>');
		
	document.write('	</table>');
	document.write('	</div>');
	document.write('</form>');
	document.write('</div>');
	document.write('<!-- / ОКНО Авторизированного Входа -->');

}

function showLogonWindow(isVisible){
	if(isVisible){
		document.all["logon_window"].style.visibility = "visible";
		document.all["login"].select();
	}else{
		document.all["logon_window"].style.visibility = "hidden";
	}
}

drawLogonWindow();
