var tmpStr = '';

var net6 = 0;

var appN = navigator.appName;
var appV = navigator.appVersion;
var majV = appV.substring(0,1);

NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;


if (appN == 'Netscape' && majV == 5) {
	net6 = 1;
} else {
	net6 = 0;
}

ver4 = (NS4 || IE4 || net6) ? 1 : 0;

var secFlag = '';
var url = location.href;
var chop = url.substr(7, 3);
var npchop = url.indexOf('newplayer');


if (chop == 'www' || chop == 'mai') {
	if (npchop != -1) {
		secFlag = 'newplayer';
	} else {
		secFlag = 'main';
	}
} else if (chop == 'tow') {
	secFlag = 'town';
} else if (chop == 'gui') {
	secFlag = 'guide';
} else if (chop == 'upd') {
	secFlag = 'update';
} else if (chop == 'sup'){
	secFlag = 'support';
} else if (chop == 'my.' || chop == 'boa'){
	secFlag = 'myuo';
} else {
	secFlag = 'unknown';
}


if (ver4) {
	with (document) {
		write("<STYLE TYPE='text/css'>");
		if (NS4) {
			write(".parent {position:absolute; top: 145px; visibility:hidden}");
			write(".child {position:absolute; left:13px; visibility:hidden}");
			write(".regular {position:absolute; visibility:hidden}")
		} else {	
			write(".child {position:relative; left:13px; display:none}");
		}
		write("</STYLE>");
	}
}




function getIndex(el) {
	ind = null;
	for (i=0; i<document.layers.length; i++) {
		whichEl = document.layers[i];
		if (whichEl.id == el) {
			ind = i;
			break;
		}
	}
return ind;
}




function showAll() {
    for (i=firstInd; i<document.layers.length; i++) {
        whichEl = document.layers[i];
        whichEl.visibility = "show";
    }
}








function arrange() {
	nextY = document.layers[firstInd].pageY + document.layers[firstInd].document.height;
	for (i=firstInd+1; i<document.layers.length; i++) {
		whichEl = document.layers[i];
		if (whichEl.visibility != "hide") {
			if (whichEl.name.indexOf('el') != -1){
				whichEl.pageY = nextY;
				nextY += whichEl.document.height;
			}
		}
	}
}








function whichSec() {
	if (!ver4) return;
	//IE
	if (IE4) {
		if (secFlag == 'main') {
			// need way to display the correct minus //document.images[35].src = "http://www.jp.uo.com/images/minus.gif";
			elThreeChild.style.display = 'block';				
			document.images.elThree.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'town') {
			elFourChild.style.display = 'block';
			document.images.elFour.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'guide') {
			elFiveChild.style.display = 'block';
			document.images.elFive.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'support') {
			elSixChild.style.display = 'block';
			document.images.elSix.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'update') {
			elSevenChild.style.display = 'block';
			document.images.elSeven.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'newplayer') {
			elTwoChild.style.display = 'block';
			document.images.elTwo.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'myuo') {
			elEightChild.style.display = 'block';
			document.images.elEight.src = "http://www.jp.uo.com/images/minus.gif";
		} else {
		 	elThreeChild.style.display = 'block';
			document.images.elThree.src = "http://www.jp.uo.com/images/minus.gif";
		}
	
	// Netscape 6	
	} else if (net6) {
		if (secFlag == 'main') {
			var idName = document.getElementById('elThreeChild');
			idName.style.display = 'block';			
			document.images.elThree.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'town') {
			var idName = document.getElementById('elFourChild');
			idName.style.display = 'block';			
			document.images.elFour.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'guide') {
			var idName = document.getElementById('elFiveChild');
			idName.style.display = 'block';				
			document.images.elFive.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'support') {
			var idName = document.getElementById('elSixChild');
			idName.style.display = 'block';			
			document.images.elSix.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'update') {
			var idName = document.getElementById('elSevenChild');
			idName.style.display = 'block';		
			document.images.elSeven.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'newplayer') {
			var idName = document.getElementById('elTwoChild');
			idName.style.display = 'block';		
			document.images.elTwo.src = "http://www.jp.uo.com/images/minus.gif";
		} else if (secFlag == 'myuo') {
			var idName = document.getElementById('elEightChild');
			idName.style.display = 'block';		
			document.images.elEight.src = "http://www.jp.uo.com/images/minus.gif";
		} else {
			var idName = document.getElementById('elThreeChild');
			idName.style.display = 'block';		
			document.images.elThree.src = "http://www.jp.uo.com/images/minus.gif";
		}		
	
	// Netscape 4
	} else {
		if (secFlag == 'main') {
			document.elThreeChild.visibility = 'show';
			document.elThreeParent.document.images['elThree'].src = "http://www.jp.uo.com/images/minus.gif";				
		} else if (secFlag == 'town') {
			document.elFourChild.visibility = 'show';
			document.elFourParent.document.images['elFour'].src = "http://www.jp.uo.com/images/minus.gif";		
		} else if (secFlag == 'guide') {
			document.elFiveChild.visibility = 'show';
			document.elFiveParent.document.images['elFive'].src = "http://www.jp.uo.com/images/minus.gif";	
		} else if (secFlag == 'support') {
			document.elSixChild.visibility = 'show';
			document.elSixParent.document.images['elSix'].src = "http://www.jp.uo.com/images/minus.gif";	
		} else if (secFlag == 'update') {
			document.elSevenChild.visibility = 'show';
			document.elSevenParent.document.images['elSeven'].src = "http://www.jp.uo.com/images/minus.gif";	
		} else if (secFlag == 'newplayer') {
			document.elTwoChild.visibility = 'show';
			document.elTwoParent.document.images['elTwo'].src = "http://www.jp.uo.com/images/minus.gif";	
		} else if (secFlag == 'myuo') {
			document.elEightChild.visibility = 'show';
			document.elEightParent.document.images['elEight'].src = "http://www.jp.uo.com/images/minus.gif";
		}	else {
			document.elThreeChild.visibility = 'show';
			document.elThreeParent.document.images['elThree'].src = "http://www.jp.uo.com/images/minus.gif";																			
		}			
	}
}




function initIt(){
	if (!ver4) return;
		if (NS4) {
			for (i=0; i<document.layers.length; i++) {
				whichEl = document.layers[i];
				if (whichEl.id.indexOf("Child") != -1) whichEl.visibility = "hide";
			}	
		whichSec();				
		arrange();
		} else if (net6) {
			divColl = document.getElementsByTagName("DIV");
			for (i=0; i<divColl.length; i++) {
				whichEl = divColl[i];
					if (whichEl.className == "child") whichEl.style.display = "none";
			}
			whichSec();
		} else {
			divColl = document.all.tags("DIV");
			for (i=0; i<divColl.length; i++) {
				whichEl = divColl(i);
					if (whichEl.className == "child") whichEl.style.display = "none";
			}
			whichSec();
		}
}




function expandIt(el) {
	if (!ver4) return;
	//IE
	if (IE4) {
		whichEl = eval(el + "Child");	
		whichIm = event.srcElement;
			if (whichEl.style.display == "none") {
				whichEl.style.display = "block";
				whichIm.src = "http://www.jp.uo.com/images/minus.gif";   
			} else {
				whichEl.style.display = "none";
				whichIm.src = "http://www.jp.uo.com/images/plus.gif";
			}
	// Netscape 6
	} else if (net6) {
		var idStr = el + "Child";
		var getId = document.getElementById(idStr);
		whichIm = eval("document.images." + el);
			if (getId.style.display == "none") {
				getId.style.display = "block";
				whichIm.src = "http://www.jp.uo.com/images/minus.gif";   
			} else {
				getId.style.display = "none";
				whichIm.src = "http://www.jp.uo.com/images/plus.gif";
			}
	// Netscape 4
	} else {
		whichEl = eval("document." + el + "Child");	
		whichIm = eval("document." + el + "Parent.document.images[el]");
		if (whichEl.visibility == "hide") {
			whichEl.visibility = "show";
			whichIm.src = "http://www.jp.uo.com/images/minus.gif";
		} else {
			whichEl.visibility = "hide";
			whichIm.src = "http://www.jp.uo.com/images/plus.gif";
		}
	arrange();
	}
}




onload = initIt;
	 
if (IE4) {
	tmpStr += '<table cellspacing="0" cellpadding="0" border="0" width="121"><tr><td>';//121
} else {
	tmpStr += '<img SRC="./images/blank.gif" width="121" height = "1">';
}

document.write('<link rel=\"STYLESHEET\" type=\"text/css\" href=\"http://www.jp.uo.com/uonav-style.css\">');

<!--はじUO-->
tmpStr += '<DIV ID="elOneParent" CLASS="parent">';
tmpStr += '<IMG NAME="elOne" SRC="./images/blank.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="">';
tmpStr += ' <a href="http://www.japan.ea.com/hajiuo/index.phtml" class="nav"><b>初めての方へ</b></a></DIV>';
tmpStr += '';
<!--はじUO-->


<!--新規プレイヤー-->
tmpStr += '<DIV ID="elTwoParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elTwo\'); return false"><IMG NAME="elTwo" SRC="./images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://www.jp.uo.com/newplayer/" class="nav"><b>新規プレイヤー</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elTwoChild" CLASS="child">';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/haven_0.html#newplayerfaq" class="subnav"><b>FAQ</b></a><br>';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/newplay_0.html" class="subnav">UOの紹介</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/newplay_1.html" class="subnav">UOのインストール</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/newplay_2.html" class="subnav">アカウントの登録</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/newplay_3.html" class="subnav">UOの起動</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/character_0.html" class="subnav">キャラクターの作成</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/haven_0.html" class="subnav">ヘイブンでの生活</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/newplay_5.html" class="subnav">スタッフの紹介</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/newplay_6.html" class="subnav">ブリタニアでのマナー</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/downloads.html" class="subnav">オンラインマニュアル</a><br></DIV>';
tmpStr += '';
<!--新規プレイヤー-->


<!--ホーム-->
tmpStr += '<DIV ID="elThreeParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elThree\'); return false"><IMG NAME="elThree" SRC="http://www.jp.uo.com/images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://www.jp.uo.com/" class="nav"><b>HOME</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elThreeChild" CLASS="child">';
tmpStr += '<a href="http://www.japan.ea.com/hajiuo/package.html" class="subnav">製品情報</a><br>';
tmpStr += '<a href="http://www.japan.ea.com/hajiuo/kanren.html" class="subnav">関連製品情報</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/gametime.html" class="subnav">ゲームタイム情報</a><br>';

tmpStr += '<a href="http://www.jp.uo.com/service.html" class="subnav">サービス情報</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/uopowerup.html" class="subnav">有料拡張サービス</a><br>';

tmpStr += '<a href="http://www.japan.ea.com/hajiuo/dousa.html" class="subnav">動作環境</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/screens.html" class="subnav">スクリーンショット</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/downloads.html" class="subnav">ダウンロード</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/volunteer/" class="subnav">ボランティア・センター</a><br></DIV>';
tmpStr += '';
<!--ホーム-->


<!--コミュニティ-->
tmpStr += '<DIV ID="elFourParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elFour\'); return false"><IMG NAME="elFour" SRC="http://www.jp.uo.com/images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://town.jp.uo.com/" class="nav"><b>コミュニティ</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elFourChild" CLASS="child">';
tmpStr += '<a href="http://town.jp.uo.com/bnn/" class="subnav">BNN</a><br>';
tmpStr += '<a href="http://town.jp.uo.com/cgi-bin/uo_events_list.pl" class="subnav">イベントカレンダー</a><br>';
tmpStr += '<a href="http://town.jp.uo.com/event_info.html" class="subnav">イベント情報</a><br>';
tmpStr += '<a href="http://town.jp.uo.com/guilds/" class="subnav">ギルド</a><br>';
tmpStr += '<a href="http://www.japan.ea.com/archive/uo/dem_uo.html" class="subnav">情報配信サービス</a><br>';
tmpStr += '<a href="http://town.jp.uo.com/establishments.html" class="subnav">コミュニティスポット</a><br>';
tmpStr += '<a href="http://town.jp.uo.com/screenshots.html" class="subnav">今週の1コマ</a><br>';
tmpStr += '<a href="http://town.jp.uo.com/links.html" class="subnav">リンク集</a><br></DIV>';
tmpStr += '';
<!--コミュニティ-->


<!--プレイガイド-->
tmpStr += '<DIV ID="elFiveParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elFive\'); return false"><IMG NAME="elFive" SRC="http://www.jp.uo.com/images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://guide.jp.uo.com/" class="nav"><b>プレイガイド</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elFiveChild" CLASS="child">';
tmpStr += '<a href="http://guide.jp.uo.com/itemproperties.html" class="subnav">アイテムの特性</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/plantsystem_0.html" class="subnav">植物の栽培</a><br>';

tmpStr += '<a href="http://guide.jp.uo.com/skills.html" class="subnav">スキル</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/bestiary.html" class="subnav">生物</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/weapons.html" class="subnav">装備</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/atlas.html" class="subnav">地図帳</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/championspawn_0.html" class="subnav">チャンピオンスポーン</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/virtues_5.html" class="subnav">徳</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/sectrade_0.html" class="subnav">トレード</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/house_0.html" class="subnav">ハウジングとボート</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/magic.html" class="subnav">魔法</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/mugen_0.html" class="subnav">Mugen Shard</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/uorman_0.html" class="subnav">ルネッサンス</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/history.html" class="subnav">歴史</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/guilds_4.html" class="subnav">ギルド</a><br>';
tmpStr += '<a href="http://guide.jp.uo.com/7gifts.html" class="subnav">7周年記念ギフト</a><br></DIV>';
tmpStr += '';
<!--プレイガイド-->


<!--サポート-->
tmpStr += '<DIV ID="elSixParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elSix\'); return false"><IMG NAME="elSix" SRC="http://www.jp.uo.com/images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://support.jp.uo.com/" class="nav"><b>サポート</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elSixChild" CLASS="child">';
tmpStr += '<a href="http://support.jp.uo.com/eSearch/" class="subnav">eSearch</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/scam.html" class="subnav">詐欺からの防衛</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/tech_0.html" class="subnav">テク・サポート</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/gm_0.html" class="subnav">GMサポート</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/gm_21.html" class="subnav">RPサポート</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/gm_22.html" class="subnav">結婚式情報</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/gm_23.html" class="subnav">Shop/Townアワード</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/downtime.html" class="subnav">ダウンタイム</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/uopro.html" class="subnav">UO Proツール</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/faq.html" class="subnav">FAQ</a><br></DIV>';
tmpStr += '';
<!--サポート-->


<!--アップデート-->
tmpStr += '<DIV ID="elSevenParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elSeven\'); return false"><IMG NAME="elSeven" SRC="http://www.jp.uo.com/images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://update.jp.uo.com" class="nav"><b>アップデート</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elSevenChild" CLASS="child">';
tmpStr += '<a href="http://update.jp.uo.com/fyi.html" class="subnav">一般情報</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/news.html" class="subnav">サイトニュース</a><br>';
tmpStr += '<a href="http://support.jp.uo.com/s_issue.html" class="subnav">シャードニュース</a><br>';
tmpStr += '<a href="http://update.jp.uo.com/comments.html" class="subnav">チームコメント</a><br>';
tmpStr += '<a href="http://update.jp.uo.com/concept.html" class="subnav">コンセプト</a><br>';
tmpStr += '<a href="http://update.jp.uo.com/general.html" class="subnav">一般テスト</a><br>';
tmpStr += '<a href="http://update.jp.uo.com/latest.html" class="subnav">最新アップデート</a><br></DIV>';
tmpStr += '';
<!--アップデート-->


<!--MyUO-->
tmpStr += '<DIV ID="elEightParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elEight\'); return false"><IMG NAME="elEight" SRC="http://www.jp.uo.com/images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://my.uo.com/cgi-bin/myuojp.pl" class="nav"><b>MyUO</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elEightChild" CLASS="child">';
tmpStr += '<a href="http://my.uo.com/cgi-bin/my_charsJ.pl" class="subnav">MyUOキャラクター</a><br>';
tmpStr += '<a href="http://my.uo.com/char_searchJ.html" class="subnav">キャラクター検索</a><br></DIV>';
tmpStr += '';
<!--MyUO-->


<!--公式掲示板-->
tmpStr += '<DIV ID="elNineParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elNine\'); return false"><IMG NAME="elNine" SRC="http://www.jp.uo.com/images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://www.jp.uo.com/boards/wwwthreads.pl" class="nav"><b>公式掲示板</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elNineChild" CLASS="child">';
tmpStr += '<a href="https://my.uo.com/newuserj.html" class="subnav">新規ユーザー</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/agree.html" class="subnav">利用規約</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/boards/login.pl" class="subnav">ログイン</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/boards/faq_japanese.pl" class="subnav">FAQ</a><br></DIV>';
tmpStr += '';
<!--公式掲示板-->


<!--アカウント管理-->
tmpStr += '<DIV ID="elTenParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elTen\'); return false"><IMG NAME="elEleven" SRC="http://www.jp.uo.com/images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://ultima-registration.com/" class="nav"><b>アカウント管理</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elTenChild" CLASS="child">';
tmpStr += '<a href="http://www.jp.uo.com/newplayer/newplay_2.html" class="subnav">アカウント登録手順</a><br>';
tmpStr += '<a href="https://www.ultima-registration.com/ja/index.html" class="subnav">アカウント作成/変更</a><br>';
tmpStr += '<a href="https://secure.japan.ea.com/uo/support/accountform.html" class="subnav">アカウントサポート</a><br></DIV>';
tmpStr += '';
<!--アカウント管理-->


<!--連絡先-->
tmpStr += '<DIV ID="elElevenParent" CLASS="parent">';
tmpStr += '<A HREF="#" onClick="expandIt(\'elEleven\'); return false"><IMG NAME="elTwelve" SRC="http://www.jp.uo.com/images/plus.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="Expand/Collapse Item"></A>';
tmpStr += ' <a href="http://www.jp.uo.com/contact.html" class="nav"><b>連絡先</b></a></DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elElevenChild" CLASS="child">';
tmpStr += '<a href="http://www.jp.uo.com/contact.html" class="subnav">お問い合わせ</a><br>';
tmpStr += '<a href="http://www.jp.uo.com/recruit.html" class="subnav">UOリクルート</a><br>';
tmpStr += '<a href="http://www.japan.ea.com/" class="subnav">EAホームページ</a><br></DIV>';
tmpStr += '';
<!--連絡先-->


<!--eSearch-->
tmpStr += '<DIV ID="elTwelveParent" CLASS="parent">';
tmpStr += '<IMG NAME="elTwelve" SRC="http://www.jp.uo.com/images/blank.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="">';
tmpStr += ' <a href="http://support.jp.uo.com/eSearch/" class="nav"><b>eSearch</b></a></DIV>';
tmpStr += '';
<!--eSearch-->

<!--** US Official **-->
tmpStr += '<DIV ID="elTwelveParent" CLASS="parent">';
tmpStr += '<IMG NAME="elTwelve" SRC="http://www.jp.uo.com/images/blank.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="">';
tmpStr += ' <a href="http://www.uo.com/" class="nav"><b>US公式サイト</b></a></DIV>';
tmpStr += '';
<!--** END of US Official **-->

<!--EAストア-->
tmpStr += '<BR><BR>';
tmpStr += '<DIV ID="elTwelveParent" CLASS="parent">';
tmpStr += '<IMG NAME="elTwelve" SRC="http://www.jp.uo.com/images/blank.gif" WIDTH=9 HEIGHT=9 BORDER=0 ALT="">';
tmpStr += ' <a href="http://eastore.japan.ea.com/" class="nav"><b>EAストア</b></a></DIV>';
tmpStr += '';
<!--EAストア-->

tmpStr += '<p>';
tmpStr += '';
tmpStr += '<DIV ID="elBod" CLASS="regular">';
//tmpStr += 'Rest';
tmpStr += '</DIV>';
tmpStr += '';
tmpStr += '<DIV ID="elFooter" CLASS="regular">';

//tmpStr += 'Footer';
tmpStr += '</DIV>';




if (IE4) {
tmpStr += '</td></tr></table>';
}




document.write(tmpStr);




	if (document.layers) {
		firstEl = "elOneParent";
		firstInd = getIndex(firstEl);
		showAll();
        arrange();
	}