

// CountDown																	
function CountDown(seconds, target) {
	document.getElementById("submit_login").style.display='none';
	CountDownRepeat(seconds, target);	
	return true;
}

// CountDown																	
function CountDownRepeat(seconds, target) {
	document.getElementById(target).innerHTML = "Sicherheits-Verz&ouml;gerung:<br>"+seconds+" Sekunden";
	seconds--;
	if (seconds>=0) window.setTimeout("CountDownRepeat("+seconds+",'"+target+"')", 1000);
}
