	function handle_table_link(that, url, target)
	{
		// disable a
		that.childNodes[0].href="JavaScript: void(0)";
	
		if (target=="_blank")
		{
			w = window.open (url,"","location=1,status=1,scrollbars=1,menubar=1,resizable=1,titlebar=1,toolbar=1,width=1024,height=600");
			w.moveTo(0,0);
		}
		else
		{
			document.location.href = url;
		}
	}
