
countdown = -97611864;

function convert_to_time(secs)
{
	secs = parseInt(secs);
	hh = secs / 3600;
	hh = parseInt(hh);
	mmt = secs - (hh * 3600);
	mm = mmt / 60;
	mm = parseInt(mm);
	ss = mmt - (mm * 60);

	if (ss < 10) { ss = "0"+ss; }
	if (mm < 10) { mm = "0"+mm; }
	if (hh < 10) { hh = "0"+hh; }

	return (hh+":"+mm+":"+ss);
}

function do_cd()
{
	if (countdown <= 0)
	{ document.location.href = "http://www.den4renz-marketing-club.com/"; }
	else
	{
		document.getElementById('cd').innerHTML = convert_to_time(countdown);
		setTimeout('do_cd()', 1000);
	}
	countdown = countdown - 1;
}

document.write("<div id=\"cd\" style=\"float:clear\; margin:5px\; padding:5px\; border:  dashed \#0033CC\; background:\#FFFFFF\; height:height\; width:200px\; font-family: Arial, 'Times New Romans'\; color: \#000\;font-size:24pt\; text-align:center\;\"></div>\n");

do_cd();

	
