function selChange(theSel,baseURL,targetWin)
{
  var currSel=theSel.selectedIndex;
  if(currSel==0)
        return;
     var currURL=theSel.options[currSel].value;
  baseURL=baseURL.substring(0,baseURL.lastIndexOf("/")+1);
  targetWin.location.href=currURL;
  theSel.selectedIndex=0;
}

document.write('<table border="0" cellspacing="0" cellpadding="0" width="120" height="80">' +
		'<tr><td background="lg05.gif" valign="middle" align="center">' +
		'<br><br>' + 
		'<form name="formmenu">' +
		'<select name="menu" size="1" OnChange="selChange(document.formmenu.menu,parent.location.href,parent.top)">' +
		'<option value="../index.htm">目錄 Menu</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../index01.htm">本站首頁</option>' +
		'<option value="../index01.htm">Main Page</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../gary/index.htm">我的檔案</option>' +
		'<option value="../gary/index.htm">My Info</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../name/index.htm">妳的名字</option>' +
		'<option value="../name/index.htm">Your Name</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../music/index.htm">樂韻悠揚</option>' +
		'<option value="../music/index.htm">Music</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../wallpapers/index.htm">桌面背景</option>' +
		'<option value="../wallpapers/index.htm">Wallpaper</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../screenmate/index.htm">桌面玩偶</option>' +
		'<option value="../screensmate/index.htm">ScreenMates</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../skin/index.htm">版面中心</option>' +
		'<option value="../skin/index.htm">Skin Center</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../jokes/index.htm">幽默笑話</option>' +
		'<option value="../jokes/index.htm">Jokes</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../friend/index.htm">悠閒小頁</option>' +
		'<option value="../friend/index.htm">Leisure</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../others/index.htm">綜合資訊</option>' +
		'<option value="../others/index.htm">General</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'<option value="../gbook/index.htm">訪客名冊</option>' +
		'<option value="../gbook/index.htm">Guestbook</option>' +
		'<option value="../index.htm">★~~~~~★</option>' +
		'</select>' +
		'</form>' +
		'</td></tr></table>');
