function SetBackGround(div)
{
 if (!div){return false;}
 document.body.style.backgroundColor = div.style.backgroundColor;
	// Создаем новый AJAX объект   
    return setAjaxRequest("/template/expo/public/ajax/bg_colorpicker.php", "color=" + div.style.backgroundColor, return_color, "game_rating");
} 

// Функция обратного вызова
function return_color() {
    var response = this.req.responseText;
}
