var focusLoginInput = function(e) { 
	alert("focusLoginInput function");
	if (dijit.byId('inlogUsername').value == "") {
		alert('username' + dijit.byId('inlogUsername').value);
		dijit.focus(dijit.byId('inlogUsername'));
	} else {
		alert('password' + dijit.byId('inlogPassword').value);
		dijit.focus(dijit.byId('inlogPassword'));
	}
}

function showLoginDialog() {
	dijit.byId('inlogDialog').show();
}