/* ##########################################################################
# 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() {

// only needed becouse of a bug in ie8 rc1, there is no BG-image without any div manipilation by js
Element.show('lay_pw');
Element.hide('lay_pw');
//-------------------------------------------

  $("login").onsubmit = function(){
if($F('username').search(/[\^%$#@!&*()/{}\[\]]/gi)>=0){
	alert('shoma mojaz be vorood ba in esm nemibashid');
	return false;
	}


	if (!Element.visible('lay_pw')) $('pw').value='';

    var myAjaxObj= new Ajax.Request(
                 "./?CheckUserName",
                 {
                  onSuccess: function(ajaxResult) {
                 	if (ajaxResult.responseText==1) location.href='./?Chat';
                 	else{
                            if (ajaxResult.responseText=='pw' || ajaxResult.responseText=='pw+invisible') {
                                 	Element.show('lay_pw');
									if (ajaxResult.responseText=='pw+invisible') Element.show('lay_invisible');
                                 	Element.hide('lay_gender');
                                 	$("pw").focus();
                                 }
                         	else {
                         		if (ajaxResult.responseText=='blacklist') location.href="./?AfterBlacklistInsertion";
                         		else if(!ajaxResult.responseText.empty()) alert(ajaxResult.responseText);
								else {
									$('username').value='';
									$('username').focus();
									}
                         		}
                         }
                 	},
                  postBody: $("login").serialize()
                 }
		);

	return false;
  }
}
