function antispam(){
		if (document.getElementById('antibot').className == "dcaptcha_yellow"){
			document.getElementById('antibot').className = "bott";
			document.getElementById('bot_sess').value = 0;
		}
		else{
			document.getElementById('antibot').className = "dcaptcha_yellow";
			document.getElementById('bot_sess').value = 1;
		}
	}

	var commentField = document.getElementById("url");
    var submitp = commentField.parentNode;
    var answerDiv = document.getElementById("dcaptcha");	    
    submitp.appendChild(answerDiv, commentField);
