function showCinfo(i)
	{
	
	oHtml='';
	oHtml += '$' + fee[i] + '<br />';

	temp= dates[i].replace(/ \& /ig,"\",\"");	// turn into a true js array first look for space&space
	temp= temp.replace(/\&/ig,"\",\"");	// then just &
      temp= temp.replace(/\*/ig,"");	// then just &
	eval("subdate = new Array(\"" + temp + "\");");
	for (var x=0; x < subdate.length; x++)
		{
		if (subdate[x].indexOf("*")== -1) // don't list those with a *
			{oHtml += subdate[x] + '<br />';}
		}
	document.writeln(oHtml);	
  	}