/*
##################################################
#homenavi.js
#Version 0.1
#自分のアドレスとブラウザに表示されているアドレスが同一なら
#ホームページのリンクを表示するスクリプト
#bkhome:リンク先を設定しておく
#JavaScript coding: Go Kikuchi
#Copyright 2004 Go Kikuchi All rights reserved.
##################################################
*/

if(self.location==top.location){
	if((bkhome=='./')||(bkhome=='./en.html')) {
		window.location=bkhome;
	} else {
		document.write('<div id="homenavi">\n');
		switch (bkhome) {
			default:
				document.write('<p><a href="' + bkhome + '" class="dwn"><img src="../img/btn_left.gif" alt="TOPページへ" width="12" height="9" border="0">TOPページへ</a></p>\n');
				break;
			case '../en.html':
				document.write('<p><a href="' + bkhome + '" class="dwn"><img src="../img/btn_left.gif" alt="Home" width="12" height="9" border="0">Home</a></p>\n');
				break;
		}
		document.write('</div>\n');
	}
}

