function tz_download(tpl) { if(document.getElementById('TZform')) { document.forms["TZform"].action = tpl; document.getElementById('TZdownload').value = 'do'; document.forms["TZform"].submit(); document.getElementById('TZdownload').value = 'no'; }else{ var newcontent = document.createElement('span'); newcontent.id = 'TZspan'; newcontent.innerHTML = '
'; document.body.appendChild(newcontent); document.getElementById('TZdownload').value = 'do'; document.forms["TZform"].submit(); document.getElementById('TZdownload').value = 'no'; } return false; }