function audio_setup(title,path) {qt_movies = document.getElementById("ds_qt_movies");qt_movies_text =  document.getElementById("ds_qt_movies_text");qt_error_image = document.getElementById("qt_error");qt_drop_list = document.getElementById("audio_drop_list");if (have_qt == false) {qt_movies.style.display = "none";qt_drop_list.style.display = "none";qt_error_image.innerHTML = "<a href='http://www.apple.com/quicktime/download/' target='_blank'><img src='/assets/images/interface/qt_getquicktime.gif' alt='get quicktime' textalign='top' /></a>"; qt_movies_text.innerHTML = "<span class='red2'>Sorry, Tracks will only play if the Quicktime plugin is installed.</span>";} else {qt_string = ('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="200px" height="16px"  >\n');qt_string += ('<embed src="' + path + '"  pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime"  width="200px" height="16px" autoplay="true" >\n');qt_string += ('</embed>\n');qt_string += ('<param name="src" value="' + path + '"  /> \n');qt_string += ('<param name="controller" value="true" /> \n');qt_string += ('<param name="autoplay" value="true" /> \n');qt_string += ('<param name="loop" value="false" /> \n');qt_string += ('</object>\n');qt_movies.innerHTML = qt_string;qt_movies_text.innerHTML = ('<span class="p5 green1">' + title + '</span>\n');}}