<!-- 
if (document.loginform.configlogin.value == '') {
	document.loginform.configlogin.focus();
}
else {
	document.loginform.password.focus();
}

if (navigator.appName != 'Netscape' ||
	navigator.appVersion.indexOf('Win16') == -1 ||
	parseInt(navigator.appVersion) >= 3) {

	document.loginform.configjavascript.value = 1;

	if (document.images) {
		document.loginform.configjavascript.value = 2;
	}

	if (self.screen) {
		document.loginform.configjavascript.value = 3;
		document.loginform.configscreenwidth.value = screen.width;
		document.loginform.configscreenheight.value = screen.height;
		document.loginform.configscreendepth.value = screen.pixelDepth ? screen.pixelDepth : 0;
	}
}	
// -->