// JavaScript Document
function redir(toWhere)
{
  var t = toWhere;
  parent.location.href = t;
}
		  
function countdown()
{	
	var forw = 'http://www.hydromaten.de'; // komplette url
	var val = document.getElementById('redirCounterHidden').value;
	var newVal = val - 1;
	var sTxt = ( newVal >= 1 ) ? ' Sekunden' : ' Sekunde';
	// document.write(newVal);
	if( val > 0 )
	{
		document.getElementById('redirCounterHidden').value = newVal;
		document.getElementById('redirCounter').innerHTML = val + sTxt;
		window.setTimeout("countdown()", 1000 );
	} else if( val == 0 )
	{
		redir(forw);
	}
}
//  window.setTimeout("countdown()", 1000);
