﻿// JScript File

function fnGetNews(e, ev)
{
    
    var newsID=e.getAttribute("newsid");	    	   	    
    var hl=e.getAttribute("hl");	  
	var URL = "home-health-care-news/detail.aspx" ;	

	URL = URL + "?cid=0&id="+ newsID + "&hl=" + hl;
	   
	window.location.href =URL;
	if(navigator.userAgent.indexOf("Firefox") != -1)
	{
	    
	    ev.stopPropagation();
	}  
	else
	    window.event.cancelBubble=true;
}
