function getHelp(trackType){
	//alert("trackType is "+trackType);
	var helpLoc;
	var i;

	if (trackType == "REF"){		
		helpLoc=helpDir+"/R_help.html";
	}
	else {
		helpLoc=helpDir+"/C_help.html";
	}	
	return helpLoc;
}