function inputCien(id_) {
	$(id_ + '_0').focus();
	
//	alert(1);
	inputCien_1 = new Animator({
		onComplete: function () {
//			alert(21);
			$(id_).style.zIndex = 1;
			$(id_).style.display = 'none';
//			alert(22);
			$(id_ + '_1').style.zIndex = 2;
//			alert(23);
		}
	}).addSubject(new NumericalStyleSubject($(id_),'opacity',1,0))
	inputCien_1.play();
//	alert(3);
}


function inputCienB(id_) {
	if ($('login_' + id_ + '_0').value == '') {
		$('login_' + id_).style.display = 'block';
		$('login_' + id_).style.zIndex = 2;
		$('login_' + id_ + '_1').style.zIndex = 1;
		inputCien_2 = new Animator({
		}).addSubject(new NumericalStyleSubject($('login_' + id_),'opacity',0,1))
		inputCien_2.play();
	}
}
