// ==================================
// Write BBS Number
// ==================================

BBSFileName = location.href;
BBSNumFrom = BBSFileName.indexOf('bbs-4_') + 6;
BBSNumEnd = BBSFileName.lastIndexOf('.html');
BBSNum = parseInt( BBSFileName.substring(BBSNumFrom,BBSNumEnd) ) + 1;

if ( isNaN(BBSNum) == true)
{
	BBSNum = 1;
}

document.write("<div id='BBSMargin'><img src='../sharedimages/bbs-midashi.gif' width='300' height='34' alt='messages'><br><hr size='1'><span class='bbstext'>Current Page Number... [" + BBSNum + "]</span></div>");
