﻿// JScript File

//top.aspxに移動
//document.write("<iframe id='ifrmBanner' title='NEXON 無料ゲームとコミュニティ' src='http://www.nexon.co.jp/jp/content/Control/TopBanner.html' width='300' height='250' frameborder='0' scrolling='no' marginwidth='0' marginheight='0' title='バナー１'></iframe>");


function reloadTopBannerFrame()
{
    var objFrm = document.getElementById("ifrmBanner");
    if(objFrm != null)
    {
        objFrm.contentWindow.location.reload();
        setTimeout("reloadTopBannerFrame()", 15000);
    }
}

window.onload = reloadTopBannerFrame;