function mouseOver(id)
{
	var element = document.getElementById("tr-" + id);		
    element.style.backgroundColor = "#384B6B";
    
    
}
function mouseOut(id)
{
	var element = document.getElementById("tr-" + id);
	element.style.backgroundColor = "#30405C";
}

function mouseClick(url)
{
	window.location = url;
}

function showimg(url)
{
	return overlib('<img src=' + url + ' width="400" height="400">', BUBBLE, BUBBLETYPE, 'roundcorners', TEXTSIZE, 2, MIDX,30, MIDY,0, WRAP, FILTER, FADEIN,25,FADEOUT, 25, FILTERSHADOW,1, FILTERSHADOWCOLOR, 0);	
}

