//ウインドウを開く
var x;

function SWindow(x) 
{
    window.open(x,"JWindow","width=450,height=300,scrollbars=1,resizable=1,toolbar=0,menubar=0,location=0,directories=0,status=0,left=10,top=10,screenX=10,screenY=10");
}

// リンクバナー
var txt = new Array();
txt[0]="<a href='http://www.kin-ikyo.or.jp/headquarter/consult/muryoteigaku.htm' target='_blank'><img src='news/images/banner01.gif' border='0'></a>";
txt[1]="<a href=JavaScript:SWindow('news/news02.html')><img src='news/images/banner02.gif' border='0'></a>";
txt[2]="<a href='http://www.kin-ikyo-chuo.jp/old/shinryo/bumon/iinkai/pdf/no177_3.pdf' target='_blank'><img src='news/images/banner11.gif' border='0'></a>";

mmax = 3; //メッセージ行数
txtno = Math.floor(Math.random() * mmax);
document.write(txt[txtno]);

