function DownloadCenter_GetCount(prefix,link,text) {
  if(document.cookie) {
    var c = GetCookie(prefix+"DownloadCenter_Count");
    var o = document.getElementById("DownloadCount");
    if(c == '') c = "0";
    if(c == 1) 
      o.innerHTML = '<span><a href="' + link + '">' +
        '<img src="/img/system/linkdot_marg.gif" alt="" />' + text + 
        '<strong>' + c + ' Download</strong></a></span>';
    else
      o.innerHTML = '<span><a href="' + link + '">' +
        '<img src="/img/system/linkdot_marg.gif" alt="" />' + text + 
        '<strong>' + c + ' Downloads</strong></a></span>'; 
  }
}
function DownloadCenter_View(action) {
  var o = document.forms["downloadCenterM"];
  o.action = action;
  o.cmd.value = "dc_view";
  o.submit();
}

