
/*
  Constructing main frame for all pages.
  Each pages have to be placed left from 220 pixel by using div tags.
*/

/*
  Last update dates
*/

var latest_year = "09";
var latest_month = "11";
var latest_day = "21";

/*
  Search depth of location
*/
var i, num, a;
var str = location.pathname;

if( str.charAt(1) == "C" && str.charAt(2) == ':' ) {
	/*
	  Browsing on the local computer
	*/
	num = 0;
	a = str.indexOf("home");

	if( a != -1 ) {
		for( i = a; i < str.length; i++ ) {
			if( str.charAt(i) == '\\' ) {
				num++;
			}
		}
	}
} else {
	/*
	  Browsing from the remote computer
	*/
	for( i = num = 0; i < str.length; i++ ) {
		if( str.charAt(i) == '/' ) {
			num++;
		}
	}

	if( str.match("sky_dreamer") != null ) {
		num--;
	}
}

var baseURL = 'http://sky_dreamer.at.infoseek.co.jp/';

/*
  Main frames
*/
document.write(
	'<div id="mainframe"><p class="title"><a class="menulink" href="http://sky_dreamer.at.infoseek.co.jp/index.htm">ドリーム工房</a></p>' +
	'<ul class="mainframe" id="list">' +
	'<li><a class="menulink" href="' + baseURL + 'softwares/index.htm">自作ソフトウェア</a></li>' +
	'<li><a class="menulink" href="' + baseURL + 'games.htm">自作フリーゲーム</a></li>' +
	'<li><a class="menulink" href="' + baseURL + 'maniax/index.htm">マニアックなプログラミングの話</a></li>' +
	'<li><a class="menulink" href="http://kishimen.sv1.sp-land.net/midi/index.php">自作 MIDI</a></li>' +
	'<li><a class="menulink" href="' + baseURL + 'scores.htm">自作曲楽譜</a></li>' +
	'<li><a class="menulink" href="' + baseURL + 'cgi-bin/weblog.cgi">更新日記（ブログ）</a></li>' +
	'<li><a class="menulink" href="' + baseURL + 'mailform.htm">メール</a></li>' +
//	'<li><a class="menulink" href="' + baseURL + 'recruitment/index.htm">ゲーム開発スタッフ募集</a></li>' +
	'<li><a class="menulink" href="http://kishimen.sv1.sp-land.net/game/retro/index.html" target="_blank"><img src="' + baseURL + 'new.png" />新作ゲーム&nbsp;[評価版]</a></li>' +
	'</ul><p class="ct"><a id="link" href="http://www.infoseek.co.jp/" target="_blank"><img alt="infoseek" src="http://sky_dreamer.at.infoseek.co.jp/cgi-bin/Count.cgi?df=sky_dreamer-lj" /></a></p>' +
	'<p style="margin-left: 20px;"><span style="text-align: center; font-weight: bold;">最終更新日:&nbsp;' + latest_year + '/' + latest_month + '/' + latest_day + '</span><br>since: &nbsp;03/07/25</p>' +
	'<p style="font-size: 9pt; text-align: center;"><b>管理人 : <a class="menulink" href="' + baseURL + 'profile.htm">ドリームROM</a></b><br><span style="color: #3467ef;">(C) 2003-' + latest_year  + ' DreamROM</span><br><br><br>' +
	'<b>推奨環境</b><br>Internet Explorer 6.0以上<br>解像度 1024 * 800以上<br>24bit(True Color)以上<br><span style="color: #ff0000;">IE 以外では一部表示が乱れます</span></p><p></p></div>');

