﻿window.onload = function() {

    if (location.search.length > 1) {
        QString = location.search.substr(8).split("&");
    }

    $.ajax({
        url: 'request_top.aspx',
        type: 'get',
        data: 'count=0&news=0&apatop=0&campaign=1&apakey=' + QString,
        timeout: 100000,
        cache: false,
        async: true,
        success: function(req) {
            $('#apa_list').html(req);
        },
        error: function() {
            alert("読み込めませんでした");
        }
    });

};
