function validData(){
    obj=$("shop_name");
    if(obj.value == ""){
        alert("お店の名前を入力してください。");
        obj.focus();return false;
    }
    obj=$("location");
    if(obj.value == ""){
        alert("お店の場所を入力してください。");
        obj.focus();
        return false;
    }
    obj=$("auth_key");
    if(obj.value == ""){
        alert("認証キーを入力してください。");
        obj.focus();
        return false;
    }
    return true;
}
function reqShopRlt(resultRequest){
    var result = checkAjaxRlt(resultRequest, "投稿登録時");
    if (result["Result"] != "success") {
        return false;
    }else{
        alert('リクエストを受け付けました。ご投稿ありがとうございました。');
    }
    return false;
}
function reqShop(){

    if(validData()){

        var ajaxObj = new Ajax.Request("./index.php",
                                       {method:"post",
                                               parameters:"action_addReqShop=true&"+Form.serialize("ShopInfo"),
                                               asynchronous:true,
                                               onSuccess:reqShopRlt});
    }
    return false;

}
function reloadAuthimg(){
    var dd = new Date();
    $('authimg').src='./index.php?action_getAuthImg=true&rnd='+dd.getSeconds()+dd.getMilliseconds();
    return false;
}

