function AjaxLoad(key, sex) {
       JsHttpRequest.query(
            'admin.php', // backend
            {
        	'AJAX':true,
        	'key':key,
        	'sex':sex
            },
            function (result, errors) {
		if(errors) alert(errors);
                // Write the answer.
                if (result) {
                	document.getElementById('container').innerHTML = result['RES'];
                }
            },

            false  // do not disable caching

        );
}

/**
 *
 * @access public
 * @return void
 **/
function setHTML(res){

}
