<!--

function bandManNaviBarGAT(x0, y0, x1, y1, act, alt)
{

	// Get Area Tag

	// if you change webring setting, update the following entry.
	strHREFURL	= "http://www.webring.ne.jp/cgi-bin/webring?ring=wgbandman;"


	// you may not modify the following entries.
	strTagBegin	= "<AREA SHAPE=rect "
	strCOORDS	= "COORDS=\"" + x0 + "," + y0 +  "," + x1 + "," + y1 +  "\" " 
	strHREF		= "HREF=\"" + strHREFURL + act + "\" "
	strALT		= "ALT=\"" + alt + "\" "
	strTagEnd	= "target=\"_top\">"

	return strTagBegin + strCOORDS + strHREF + strALT + strTagEnd
}

function bandManNaviBar(id)
{

	// write NaviBar HTML

	// if you change navi bar setting, update the following entry.
	strMapName		= "wgbandman"
	strImgUrl		= "http://www.geocities.co.jp/Hollywood/6806/wgbandman.gif"
	strImgW			= 88					//width
	strImgH			= 52					//height
	strImgB			= 0						//border
	strImgA			= "bottom"				//align


	// you may not modify the following entries.
	strID			= "id=" + id
	strMapTagBegin	= "<MAP NAME=" + strMapName + ">"
	strMapTagEnd	= "</MAP>"
	strImgTag		= "<IMG USEMAP=\"#" + strMapName + "\""
						+ " SRC=\"" + strImgUrl
						+ "\" WIDTH=" + strImgW + " HEIGHT=" + strImgH
						+ " BORDER="  + strImgB + " ALIGN="  + strImgA
						+ ">"

	// if you change navi bar setting, update the following entry.
	document.writeln(strMapTagBegin)
	document.writeln(bandManNaviBarGAT( 0, 0,88,30,"home",          "bandMan"))
	document.writeln(bandManNaviBarGAT(21,31,67,41,"addform",       "addform"))
	document.writeln(bandManNaviBarGAT(21,41,67,52,"list",          "list"))
	document.writeln(bandManNaviBarGAT( 0,31,21,52,strID+";prev",   "prev"))
	document.writeln(bandManNaviBarGAT(67,31,88,52,strID+";next",   "next"))
	document.writeln(strMapTagEnd)
	document.writeln(strImgTag)
}

//-->
