/* ##########################################################################
# ET-Chat v3.x.x
# Lizenz: CCPL - http://creativecommons.org/licenses/by-nc/2.0/de/
# Autor: Evgeni Tcherkasski <SEDesign />
# E-mail: info@s-e-d.de
# WWW: http://www.sedesign.de
############################################################################*/

window.onload = function() {

  Element.hide('lay_pw');

  $("login").onsubmit = function(){

	if (!Element.visible('lay_pw')) $('pw').value='';

    var myAjaxObj= new Ajax.Request(
                 "checkUserName.php",
                 {
                  onSuccess: function(ajaxResult) {
                 	if (ajaxResult.responseText==1) location.href='chat.php';
                 	else{
                                 if (ajaxResult.responseText=='pw') {
                                 	Element.show('lay_pw');
                                         $("pw").focus();
                                 }
                         	else {
                         		if (ajaxResult.responseText=='blacklist') location.href="admin/blacklist.php";
                         		else if(!ajaxResult.responseText.empty()) alert(ajaxResult.responseText);
                         		}
                         }
                 	},
                  postBody: $("login").serialize()
                 }
		);

	return false;
  }
}