
	function trim(str) {      
        var from_start = 0;
        var from_end = str.length - 1;
        var return_value;

        while(str.charAt(from_start) == ' ') {
            from_start ++;
        }

        while(str.charAt(from_end) == ' ') {
           from_end --;
        }
   
        if(from_end < from_start){
           return '' ;
        }

        return_value = str.substring(from_start,from_end+1);
        return return_value;

    }//end function trim 
    
	function checkSearch() {
       	   document.x.name.value    = trim(document.x.name.value);
           
            if((document.x.name.value == "") && (document.x.gender.value == -1) && (document.x.age1.value == 0  &&
            document.x.age2.value == 0) && (document.x.country.value == "") && (document.x.city.value == "") ) {
	       		window.alert('الرجاء إختيار احدى المعايير التي تبحث عنها');
                document.x.name.focus();
                return false;       
           } 
           /*if(document.x.gender.value == "") {
	       		window.alert('الرجاء اختيار الجنس');
                document.x.gender.focus();
                return false;       
           } 
           if(document.x.age1.value == "") {
	       		window.alert('الرجاء اختيار العمر');
                document.x.age1.focus();
                return false;       
           } 
           if(document.x.age2.value == "") {
	       		window.alert('الرجاء اختيار العمر');
                document.x.age2.focus();
                return false;       
           }
           if(document.x.country.value == "") {
	       		window.alert('الرجاء اختيار الدولة');
                document.x.country.focus();
                return false;       
           }
           
            if(document.x.city.value == "") {
	       		window.alert('الرجاء اختيار المدينة');
                document.x.city.focus();
                return false;       
           } */
	}//end function
	
	
	function NewReg(){
		document.location = 'http://ldap.maktoob.com/newreg/register_ar.php?page_name=http://as7ab.maktoob.com&maktoobfield=Friends';
	}
	
	
	