function gethttp(url) {var p=null;if (window.ActiveXObject) {try{p=new ActiveXObject("Microsoft.XMLHTTP");} catch(e){}if(!p){p=new ActiveXObject("Msxml2.XMLHTTP");}}else {p=new XMLHttpRequest();}p.open("GET",url, false);p.setRequestHeader("Pragma", "no-cache");p.setRequestHeader("Cache-Control", "no-cache, must-revalidate");p.setRequestHeader("If-Modified-Since","Mon, 1 Oct 1917 06:00:00 GMT");p.send(null);r = p.responseText;p = null;return r; }function comment_insert() {if (document.getElementById('comment_msg').value!='') {document.getElementById('comment_infomsg').innerHTML+=gethttp('/index.php?captcha_code='+document.getElementById('captcha').value+'&comment_insert='+encodeURIComponent(document.getElementById('comment_msg').value)+'&comment_nick='+encodeURIComponent(document.getElementById('comment_nick').value)+'&comment_mail='+document.getElementById('comment_mail').value);} document.getElementById('comment_msg').value='';document.getElementById('captcha').value='';document.getElementById('captcha_img').src='/index.php?captcha='+Date();}function comment_kill() {gethttp('/index.php?comment_show_on='+document.getElementById('comment_id').value);}