//***********************************************************//
//*            アクセスカウンタ出力表示                     *//
//*                input : non                              *//
//*                output: non                              *//
//*                                                         *//
//*    update : 2006/04/01                                  *//
//*    Copyright (C)  Princeps                              *//
//***********************************************************//
function counter_dsp()
{
	var link_name = document.referrer;   // リンク元取得
	var COUNTER_MAX_FIGUR     = 6;                    // カウンタ表示桁数
	var COUNTER_WIDTH         = 16;                   // カウンタgif幅
	var COUNTER_HEIGHT        = 20;                   // カウンタgif高さ
	var DIR  = "./cgi-bin/counter.cgi?2+" + COUNTER_MAX_FIGUR + "+" + link_name; // カウンターCGI
	document.write('<img width="',COUNTER_MAX_FIGUR*COUNTER_WIDTH,'" height="',COUNTER_HEIGHT,'" src="',DIR,'" alt="カウンタ">');
}

//***********************************************************//
//*              リンクのオンマウス動作設定                 *//
//*                                                         *//
//*    update : 2006/03/23                                  *//
//*    Copyright (C) Princeps                               *//
//***********************************************************//

//***********************************************************//
//*                  トップページリンク                     *//
//***********************************************************//
function img_over_basic()
{
    document.basic.src = "./img/button/top/button1_2.gif";
}
function img_out_basic()
{
    document.basic.src = "./img/button/top/button1_1.gif";
}
function img_over_new_t()
{
    document.new_t.src = "./img/button/top/button2_2.gif";
}
function img_out_new_t()
{
    document.new_t.src = "./img/button/top/button2_1.gif";
}
function img_over_season()
{
    document.season.src = "./img/button/top/button3_2.gif";
}
function img_out_season()
{
    document.season.src = "./img/button/top/button3_1.gif";
}
function img_over_rule()
{
    document.rule.src = "./img/button/top/button4_2.gif";
}
function img_out_rule()
{
    document.rule.src = "./img/button/top/button4_1.gif";
}
function img_over_use()
{
    document.use.src = "./img/button/top/button5_2.gif";
}
function img_out_use()
{
    document.use.src = "./img/button/top/button5_1.gif";
}
function img_over_question()
{
    document.question.src = "./img/button/top/button6_2.gif";
}
function img_out_question()
{
    document.question.src = "./img/button/top/button6_1.gif";
}

