﻿/*@cc_on
var doc = document;
eval('var document = doc');
@*/

window.onload = function() {

    if (location.search.length > 1) {
        QString = location.search.substr(8).split("&");
    }

    $.ajax({
        url: '../request_list_sub.aspx',
        type: 'get',
        data: 'apakey=' + QString,
        timeout: 100000,
        cache: false,
        async: true,
        success: function(req) {
            $('#apa_list').html(req);
        },
        error: function() {
            alert("読み込めませんでした");
        }
    });

};