function link_on(this_link,cstatus)
{
	//this_link.style.textDecoration="underline";
	//this_link.style.fontWeight="bold";
	this_link.style.color="red";
	this_link.blur();
	if (cstatus!=null)
	{
		window.status=cstatus;
		return true;
	}
	
	
}
function link_off(this_link)
{
	//this_link.style.textDecoration="none";
	this_link.style.fontWeight="normal";
	this_link.style.color="blue";
	window.status='';
	
}
