// tablemap.js


function popLink(x) 
{
    if (x)
	{
		var splArr=x.split("¤");
		if (splArr.length==2)
		{
			if (splArr[1]=='_blank')
				window.open(splArr[0])

			else
				window.top.location.href=splArr[0];				
			
			 
			
	    }
		 
	}
}