Hi, 
I am facing problem, 
I used "Using JavaScript functions as links " example given in http://www.fusioncharts.com/Docs/Index.html 
but it is not working . 
Error is also not showing, below line doesn't work. <code> 
<set label='javascript' value='764' link="myJS('Hong Kong, 235');"  /> // this line present in myData.xml </code> 
I am attatching my both files with them. please help me. 
drildown.html 
<code> 
<html> 
   <head>  
<script language="JavaScript" src="../FusionCharts/FusionCharts.js"> 
</script> 
<SCRIPT LANGUAGE="JavaScript"> 
  
		 function myJS(myVar) 
   { 
		    window.alert(myVar); 
		 } 
  
	  </SCRIPT> 
   </head> 
   <body bgcolor="#ffffff" > 
   <div id="chartdiv" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div>   
	  
	 <script type="text/javascript"> 
	    var myChart = new FusionCharts("../FusionCharts/Column3D.swf", "myChartId", "900", "300", "0", "0"); 
	    myChart.setDataURL("myData.xml"); 
	    myChart.render("chartdiv");	    
     </script> 
</body> 
</html> 
</code> 
myData.xml 
<code< 
<chart caption='CAPGENT Technologies Pvt Ltd.' subcaption='Employee Id and their commission for year 2006'  
xAxisName='Name of Capgent Employee' yAxisName='Employee Id' numberPrefix='Rs.'> 
<set label='ashish' value='701' link='Chart.html' /> // this line is working fine with this code 
<set label='javascript' value='764' link="myJS('Hong Kong, 235');"  /> // this line is not working 
<set label='capgent' value='765'  /> 
<set label='aditya' value='766' /> 
<set label='shivam' value='801' /> 
</chart> 
</code> 
Please help me out.