function removeSpaces(string) {
	var tstring = "";
	string = '' + string;
	splitstring = string.split(" ");
	for(j = 0; j < splitstring.length; j++)
	tstring += splitstring[j];
	return tstring.length;
}

function LoginValid(obj){
	form = document.getElementById('selFormLogin');
	
	if (removeSpaces(document.getElementById('user_name').value) == 0 ) {
	    	
		alert("الرجاء إدخال اسم المستخدم");
	 		document.getElementById('user_name').focus();
			return false;
	}
	
	else if (document.getElementById('user_name').value.length >50 ) {
	    	
		     alert("لا يجب ان يكون اسم المستخدم أكبر من 50 حرف");
	 		document.getElementById('user_name').focus();
			return false;
	}else if (removeSpaces(document.getElementById('password2').value) == 0 ) {
	    	
		alert("الرجاء ادخال كلمة السر");
	 		document.getElementById('password2').focus();
			return false;
	}else if (document.getElementById('password2').value.length >50 ) {
	    	
		     alert("لا يجب ان تكون كلمة السر اكبر من 50 حرف");
	 		document.getElementById('password2').focus();
			return false;
	}
	//return false;
	
}