// JavaScript Document

function setPop(elemid, linkid)
{	

	var images=new Array();
	images[0]=["images/ttl_bg.png"];
	
	TagToTip(elemid, ABOVE, false,			 		   
					 // BGIMG ,'images/ttl_bg.png',
					  WIDTH, 200,
					//  HEIGHT ,280,
					  JUMPHORZ , true, 
					  JUMPVERT , true,
					  BGCOLOR , '#f5f5f5',
					  BORDERWIDTH , 0,
					  FOLLOWMOUSE , false,
					  STICKY, true,
					  CLICKCLOSE, true,
					  SHADOW,false, 
					  FIX, [linkid, -1, -7]);
}

function setRowStyle(rid)
{
	$(rid).style.fontWeight='bold';
	$(rid).style.backgroundColor ='#f5f5f5';
	$(rid).style.color='#333';
}
function resetStyle(rid)
{
	$(rid).style.fontWeight='normal';
	$(rid).style.color='#ccc';
	$(rid).style.backgroundColor='transparent';
}