/* Start of Download Manager Javascript */ var oThisViewList; var oDuplicateViewList; function dm_performDuplication() { document.writeln(''); oThisViewList = document.getElementById("dm_viewlist"); oDuplicateViewList = document.getElementById("dm_duplicateview"); if (oThisViewList && oDuplicateViewList) { oDuplicateViewList.innerHTML = oThisViewList.innerHTML; oDuplicateViewList.className = oThisViewList.className; } } document.writeln('
'); document.writeln('

Download manager

'); document.writeln('
'); document.writeln('
0 items, <1 KB
'); if (0 > 0) { document.writeln('
view list >>
'); dm_performDuplication(); var aDownloadList = new Array(); var iDownloadList = aDownloadList.length if (iDownloadList >0) { var oAddDownloads = document.getElementsByName("adddownload"); if (oAddDownloads) { for (var iDownload=0; iDownload < oAddDownloads.length; iDownload++) { var sDownloadValue = oAddDownloads[iDownload].value; for (iDownloadItem=0; iDownloadItem < iDownloadList; iDownloadItem++) { if (aDownloadList[iDownloadItem] == sDownloadValue) { document.writeln(''); oAddDownloads[iDownload].checked = true; } } } } } /* document.writeln('
view list >>
'); */ } else { dm_performDuplication(); } document.writeln('
'); /* End of Download Manager Javascript */