function Aendern() {
	document.getElementById("js").innerHTML = '<input type="hidden" name="js_active" />';
}

// Beim onload="countDown(true)" wird <span id="counter" class="dd">20</span> Sekunden</b> heruntergezählt
function countDown(init) {
	if (init || --document.getElementById( "counter" ).firstChild.nodeValue > 0 )
	window.setTimeout( "countDown()" , 1000 );
}

var test ='hallo';