var Active;
var ColorDown;

function OnOver(tb,Bg)
{

	tb.style.cursor = 'hand';
	tb.bgColor = Bg;

}

function OnClick(tb,Bg,Link,target) {

	tb.style.cursor = 'hand';
	tb.bgColor = Bg;

	if (target == "new") {

		window.open(Link)

	} else {

		window.location.href = Link;

	}

}

function OnOut(tb,Bg,Name) {

	tb.style.cursor = 'default';
	tb.bgColor = Bg;

}