<!--
	$('#userlogin').focus(
		function() {if ((this.value != null) && (this.value == "логин")) {this.value = "";};}
	);
	$('#userlogin').blur(
		function() {if (!((this.value != null) && (String(this.value).length > 0))) {this.value = "логин";};}
	);
	$('#userpassword').focus(
		function() {if ((this.value != null) && (this.value == "пароль")) {this.value = ""; this.type = "password";};}
	);
	$('#userpassword').blur(
		function() {if (!((this.value != null) && (String(this.value).length > 0))) {this.value = "пароль"; this.type = "text";};}
	);
//-->
