/* (c) 2006 TUFaT.com. All Rights Reserved */ /* user object */ function User () { this["uid"] = null; this["login"] = null; this["password"] = null; this["room"] = 0; this["role"] = 0; this["color"] = "ffffff"; this["state"] = 1; this["gender"] = "U"; this["photo"] = ""; this["tz"] = -180; this["lang"] = config["defaultLanguage"]; this["ignored"] = false; this["loginInProgress"] = false; this["privateWin"] = null; }