function moveUinput(){
	f=xGetElementById('uf');
	if (xTop('userinput')<3){
		t1=new Tween(xGetElementById('userinput').style, 'top', Tween.strongEaseOut, -60, 3, 1, 'px');
		f.st.focus();
		t1.start();
		}else{
		t2=new Tween(xGetElementById('userinput').style, 'top', Tween.strongEaseOut, 3, -60, 1, 'px');
		t2.start();
		f.st.value='';
		f.pw.value='';
		}
	}

function checkUinput(){
	f=xGetElementById('uf');
	return (f.st.value&&f.pw.value)?true:false;
	}