// // list.rjsi // com_siteline_audio_list = ({ replaceListData: function () { var listElement = document.getElementById("com-siteline-audio-list"); var htmlData = new String(); htmlData = htmlData + ""; while (listElement.hasChildNodes()) listElement.removeChild(listElement.lastChild); listElement.innerHTML = htmlData; }, openPopUpPlayer: function (id) { var left = (screen.width / 2) - 200; var top = (screen.height * 0.25); window.open("http://audio.sitelinenetwork.com/script/show/" + id, "com_siteline_audio_popup_" + id, "width=400,height=220,toolbar=no," + "resizable=no,left=" + left + ",top=" + top); } }); if (window.addEventListener) window.addEventListener("load", com_siteline_audio_list.replaceListData, true); else if (window.attachEvent) window.attachEvent("onload", com_siteline_audio_list.replaceListData);