if(document.location.href.match('board=')&&!document.location.href.match('action='))
{
var boards = document.getElementsByTagName('td');
for(b=0; b<boards.length; b++)
{
if(boards[b].width.match(/4(3|8)/)&&boards[b].className=='windowbg')
{
if(boards[b].firstChild.nodeName=='A')
{
boards[b].onclick=function(){document.location.href=this.firstChild.href; this.getElementsByTagName('a')[1].href=this.firstChild.href;}
}
else
{
boards[b].onclick=boards[b+4].onclick;
var click=new String(boards[b+4].onclick);
if(document.all)
{
boards[b].getElementsByTagName('a')[0].href=click.split("'")[1];
}
else
{
boards[b].getElementsByTagName('a')[0].href=click.split('"')[1];
}
}
}
}
}