 // ポップアップ
function about(url){ window.open(url, "about", "width=500,height=300,scrollbars=yes,resizable=yes"); }
function board(url){ window.open(url, "board", "width=550,height=700,scrollbars=yes,resizable=yes,status=no"); }
function disp4(url){ window.open(url, "window_widebk", "width=700,height=600,scrollbars=no,resizable=yes,status=no"); }


if (document.images) { 
// ロールオーバー用画像
//ロゴ（トップページ）
var titlerogo = new Image();
titlerogo.src = "testimg/title_anime.gif";
// ロールオーバー用画像設定終了 
} 

// ロールオーバーポイント時の処理 
function Titlerogo() { 
if (document.images) {
document.images['titlerogo'].src = titlerogo.src;
} 
} 
