function onFocusFnc(obj,msg) {
	if(obj.id == msg) {
		obj.focus();
		obj.value = ""
	}
}

function loginInputOpenClose(elementId) {
	var myObj = document.getElementById(elementId);
	if(myObj.style.visibility != 'visible') {
		myObj.style.visibility = 'visible';
		myObj.style.position = 'static';
	} else {
		myObj.style.visibility = 'hidden';
		myObj.style.position = 'absolute';
	};
}