
function create_header() {
	var txt_tmp = "";

	txt_tmp +=	"<table id=\"id_head_table_on\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"";
	txt_tmp +=@	" width=\"100%\" summary=\"ƒƒS\"><tr>";

	txt_tmp +=		"<td class=\"logo_center\" align=\"center\" width=\"177\">";
	txt_tmp +=		"<font color=\"#ffffff\" size=\"5\">Link Free!</font></td>";

	txt_tmp +=		"<td class=\"logo_center\" align=\"center\">";
	txt_tmp +=		"<div><strong>since 1999.4.1</strong></div>";
	txt_tmp +=		"<div><strong>Sorry! Japanese Only</strong></div></td>";

	txt_tmp +=		"<td class=\"logo_center\" align=\"center\">";
	txt_tmp +=		"<a href=\"http://www.dent-iwamoto.com/index.shtml\">";
	txt_tmp +=		"<font color=\"#ffffff\">TOP_PAGE</font></a></td>";

	txt_tmp +=		"<td class=\"logo_center\" align=\"center\">";
	txt_tmp +=		"<a href=\"http://www.dent-iwamoto.com/main/kousin.html\">";
	txt_tmp +=		"<font color=\"#ffffff\">XV—š—ð</font></a></td>";

	txt_tmp +=	"</tr></table>";

	return txt_tmp;
}

function show_header() {
	g_str_header = "on";
	arrange();
}

function hide_header() {
	g_str_header = "off";
	arrange();
}

function arrange_header() {
	show_hide( "id_head_table_on", ( "off" != g_str_header ) );
	show_hide( "id_head_table_off", ( "off" == g_str_header ) );
}


function open_header() {
	open_window( create_header() + g_footer,
	 "menu",
	 "<link href=\"" + g_path + g_css_file + "\" rel=\"stylesheet\" type=\"text/css\">\n",
	 "directories=0,location=0,menubar=0,status=1,width=800,height=300,resizable=1,scrollbars=1" );
}

if( g_browser_ok ) {
	document.write( create_header() );
} 