 /* 
 * *                                            
 * * Developed By : Confirm Group.
 * * E-mail :  confirmgrou@hotmail.com
 * * Do not sale to other away
 * * Do not give to other id.
 **  Confirmgroup ไร้ขีดจำกัดในสายงาน 
 **  web hosting Server  : Thai Server / Inter Server   
 ** http://hostconfirm.com/member/   
 * **********************************************
 */ 
function ajax_login(){
    var opt;

	
    opt = {
        method: 'post',
        postBody:   "username=" + $F('uname') + "&password=" + $F('password'),
        onSuccess: function( t){
            if( t.responseText == 1)
                location.href = "index.php";
            else
                alert("Login false...");
        }
    };
    
    new Ajax.Request( "take_login.php", opt);
}
