gets the name of a specific slide with a scene - requires getCourseLayout() and a scene number and slide number
function getSlideName(xmlIn, scNum, pIn) {
var sln = xmlDoc.getElementsByTagName("links")[0].childNodes[scNum].childNodes[0].childNodes[pIn - 1].getAttribute('displaytext')
return sln;
}