var a = new Array(2);
a[0] = new Image();
a[1] = new Image();
a[0].src = "../img/252-27.gif";
a[1].src = "../img/mask.gif";


function ain(x)
{
	x.background=a[0].src;
}


function aout(x)
{
	x.background=a[1].src;
}


function goto(x)
{
	href=x.firstChild.getAttribute("href");
	if(href.charAt(href.length-1) == "#")
			return;
	if(event.srcElement.tagName == "TD"){
		if( x.firstChild.getAttribute("target" ).indexOf("_blank") !=  -1 ){
			window.open( href);
		}
		else if( x.firstChild.getAttribute("target" ).indexOf("_parent") !=  -1 ){
			window.parent.location = href;
		}
		else{
			window.parent.mainFrame.location = href;
		}
	}
}

