// JavaScript Document
function BtnMouseOver(Obj)
{
	if (event.type!='mouseout')
	{
		Obj.className='BtnMouseOver';
	}
	else
	{
		Obj.className='BtnMouseOut';
	}
}

function NavPage(url)
{
	window.location.href=url;
}
var newWindow = null

function windowOpener(loadpos)
{	
  	newWindow = window.open(loadpos,"swin","toolbar=NO,resizable=yes,scrollbars=yes,dependent,width=500,height=450");
	newWindow.focus();
}

function loadThreadFollow(url,ino){
var targetImg =eval("followImg" + ino);
var targetDiv =eval("follow" + ino);
if (targetDiv.style.display!='block'){
	if(targetImg.loaded=="no"){
		document.frames["hiddenframe"].location.replace(url+ino);
		}
	targetDiv.style.display="block";
	//targetImg.src="images/minus.gif";
	}else{
		targetDiv.style.display="none";
		}
	//targetImg.src="images/plus.gif";
	//}
}
function loadThreadFollowR(url,ino){
var targetImg =eval("followImg" + ino);
var targetDiv =eval("follow" + ino);
document.frames["hiddenframe"].location.replace(url+ino);
targetDiv.style.display="block";
}


