// --------------------------------------------------------
//
// ページ最上部のラベルを記述する
//
// --------------------------------------------------------
function writeTopLabel() {
	var html = new String();
	
	html += '<DIV class="div_top">LaszloでHelloWorld!</DIV>';
	
	document.write(html);
}

// --------------------------------------------------------
//
// メニュー項目を記述する
//
// --------------------------------------------------------
function writeMenu() {
	var html = new String();
	
	html += '<DIV class="div_menu">';
	html += '<DIV align="center"><FONT class="strong_blue">- Menu -</FONT></DIV>';
	html += '<UL>';
	html += '<LI><A class="menu" href="index.html" onmouseover="this.style.color=\'#0000FF\'" onmouseout="this.style.color=\'#000000\'">Welcome</A>';
	/*
	html += '<LI><A class="menu" href="lct.html" onmouseover="this.style.color=\'#0000FF\'" onmouseout="this.style.color=\'#000000\'">LCT Project</A>';
	*/
	html += '<LI><A class="menu" href="install.html" onmouseover="this.style.color=\'#0000FF\'" onmouseout="this.style.color=\'#000000\'">Install Laszlo</A>';
	html += '<LI><A class="menu" href="docs/reference/html-index.html" onmouseover="this.style.color=\'#0000FF\'" onmouseout="this.style.color=\'#000000\'">Reference(Japanese)</A>';
	html += '<LI><A class="menu" href="laszlo_tutorial.html" onmouseover="this.style.color=\'#0000FF\'" onmouseout="this.style.color=\'#000000\'">Tutorial</A>';
	html += '<LI><A class="menu" href="sample.html" onmouseover="this.style.color=\'#0000FF\'" onmouseout="this.style.color=\'#000000\'">Sample</A>';
	html += '<LI><A class="menu" href="old_site/index.html" onmouseover="this.style.color=\'#0000FF\'" onmouseout="this.style.color=\'#000000\'">Old Site(swf)</A>';
	html += '<LI><A class="menu" href="link.html" onmouseover="this.style.color=\'#0000FF\'" onmouseout="this.style.color=\'#000000\'">Link</A>';
	html += '</UL>';
	html += '</DIV>';

	document.write(html);
}

// --------------------------------------------------------
//
// 更新履歴を記述する
//
// --------------------------------------------------------
function writeNews() {
	var html = new String();
	
	html += '<DIV style="position:absolute; top:250px; left:10px;"><TABLE cellpadding="1" cellspacing="0" width="170">';
	html += '<TR><TD align="center"><A href="http://sourceforge.jp/"><IMG src="http://sourceforge.jp/sflogo.php?group_id=1846" width="96" height="31" border="0" alt="SourceForge.jp"></A></TD></TR>';
	html += '<TR><TD height="10"></TD></TR>';
	html += '<TR>';
	html += '<TD align="center">';
	html += '<object height="20" width="100" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0">'
	html += '<param name="quality" value="high">'
	html += '<param name="bgcolor" value="#EFEFEF">'
	html += '<param name="movie" value="mail.swf?fontsize=12&fontcolor=0000FF">'
	html += '<embed src="mail.swf?fontsize=12&fontcolor=0000FF" height="16" width="70" quality="high" type="Application/x-shockwave-flash" pluginspage="http://www.macromedia.com/jp/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> '
	html += '</embed></object>'
	html += '</TD>';
	html += '</TR>';
	html += '<TR><TD align="center"><A class="menu" href="http://mikeneko.net/index.html" onmouseover="this.style.color=\'#0000FF\'" onmouseout="this.style.color=\'#000000\'">Thanks for MIKENET.NET</A></TD></TR>';
	html += '</TABLE></DIV>';
	

	
	document.write(html);
}

// --------------------------------------------------------
//
// 著作権及びSourceForgeのロゴを記述する
//
// --------------------------------------------------------
function writeBottomLine() {
	var html = new String();
	
	html += '<TABLE width="100%">';
	html += '<TR>';
	html += '<TD colspan="2" width="100%" colspan="3" bgcolor="#888888" height="1"></TD>';
	html += '</TR>';
	html += '<TR height="10">';
	html += '<TD colspan="2"></TD>';
	html += '</TR>';
	html += '<TR>';
	html += '<TD align="center" nowrap colspan="2"><FONT class="strong_blue">Copyright(c) Kato All Rights Reserved.   Last Update 2005/02/16</FONT></TD>';
	html += '</TR>';
	html += '</TABLE>';
	
	document.write(html);
}
