info="  <center>" + 
"<table bgcolor=black>" + 
"  <tr>" + 
"    <td><img  src=http://www.mondotopia.com/real_time_clocks/skull_and_bones.gif></td>" + 
"    <td><font face=arial; size=1;>"

document.write(info)
// CREDITS:
// Realtime Death Counter 2.01
// By Peter Gehrig
// Copyright (c) 2003 Peter Gehrig. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://www.24fun.com
// info@24fun.com
// 10/6/2003
// The script is based on statistics by World Health Organisation

// IMPORTANT:
// If you add this script to a script-library or script-archive
// you have to add a highly visible link to
// http://www.24fun.com on the webpage
// where this script will be featured

var cause=new Array()

// delete or add new death-causes like this: 
// cause[x]="cause of death|number of deaths per year"
cause[0]="&nbsp;people have died since then|56553860"


// font
var thisfont="Verdana"

// font-size
var thissize=10

// font-color
var thiscolor="white"


// font of title
var titlefont="Arial"

// font-size of title
var titlesize=10

// font-color
var titlecolor="#FFFFFF"


// backgroundcolor title
var titlebg="#000000"

// backgroundcolor death counter
var bg="#000000"


// do not edit below this line
var t = 0
var enterTime = new Date()
var enterTime = Math.floor(enterTime.getTime()/1000)
var secyear=31536000
var rowflag=false
var i_causes=0

if (document.getElementById) {
	initdisplay()
}

function initdisplay() {
	document.write('<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 bgcolor="'+bg+'">')
	document.write('<tr valign=top>')
	document.write('<td colspan=4 style="font-family:'+titlefont+';font-size:'+titlesize+'pt;color:'+titlecolor+';background-color:'+titlebg+'" id="titlecell" align=center>')
	document.write('</td></tr>')
	
	document.write('<tr valign=top>')
	document.write('<td colspan=2>')
	document.write(' ')
	document.write('</td></tr>')
	document.write('<tr valign=top>')
	document.write('<td><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0>')
	for (i=0; i<=(cause.length)/2; i++) {
		var content=cause[i].split("|")
		document.write('<tr valign=top>')
		document.write('<td align=right style="font-family:'+titlefont+';font-size:'+titlesize+'pt;color:'+titlecolor+';" align=center id="cell'+i+'">')
		document.write('empty')
		document.write('</td>')
		document.write('<td>')
		document.write('  ')
		document.write('</td>')
		document.write('<td align=left style="font-family:'+thisfont+';font-size:'+thissize+'pt;color:'+thiscolor+'">')
		document.write(content[0]+" ")
		document.write('</td>')
		document.write('</tr>')
		i_causes++
	}			
	document.write('</TABLE></td>')
	document.write('<td>      </td>')
	document.write('<td><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0>')
	for (i=i_causes; i<=cause.length-1; i++) {
		var content=cause[i].split("|")
		document.write('<tr valign=top>')
		document.write('<td align=right id="cell'+i+'" style="font-family:'+thisfont+';font-size:'+thissize+'pt;color:'+thiscolor+'">')
		document.write('empty')
		document.write('</td>')
		document.write('<td>')
		document.write('  ')
		document.write('</td>')
		document.write('<td align=left style="font-family:'+thisfont+';font-size:'+thissize+'pt;color:'+thiscolor+'">')
		document.write(content[0]+" ")
		document.write('</td>')
		document.write('</tr>')
	}			
	document.write('</TABLE></td></TABLE>')
}

function docounter() {
	var now = new Date()
	var now=Math.floor((now.getTime()/1000))
	var hereSince = now - enterTime
	for (i=0; i<=cause.length-1; i++) {
		var content=cause[i].split("|")
		content[1]=Math.floor(content[1]/secyear*hereSince)
    	document.getElementById('cell'+i).innerHTML=content[1]
    	document.getElementById('titlecell').innerHTML="  You have been here for "+hereSince+" seconds" 
	}	
	var setT = setTimeout("docounter()",1000)		
}


function showNr(zahlProSec,hereSi,gifNa) {

	var zahlSince = ""+Math.floor(hereSi*zahlProSec) 
	var rechtsPos = 9 -	zahlSince.length-1

	for (i=0; i<= zahlSince.length-1; i++) {
		document.images[gifNa+(i+rechtsPos)].src = "z"+zahlSince.charAt(i)+".gif"
	}
}

if (document.getElementById) {
	window.onload=docounter
}
info="</font></td>" + 
"  </tr>" + 
"</table>" + 
"  <center><a href=http://www.mondotopia.com target=_blank><font face=Verdana size=1 color=red><u>Death Clock from Mondotopia</u></font></a></center>"

document.write(info)