function setcountup(theyear,themonth,theday){
	yr=theyear;mo=themonth;da=theday
}

//STEP 1: Configure the date to count up from, in the format year, month, day:
//This date should be less than today
setcountup(2007,12,27)

//STEP 3: Configure the below 5 variables to set the width, height, background color, and text style of the countup area
var countupwidth   = '180px'
var countupheight  = '35px'
var countupbgcolor = 'none'
var opentags  = '<font face="Verdana" color="black">'
var closetags = '</font>'

//////////DO NOT EDIT PASS THIS LINE//////////////////
var montharray = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var crosscount = ''

function start_countup(){
	if (document.all||document.getElementById)
		crosscount = document.getElementById&&!document.all?document.getElementById("countupie") : countupie
		countup()
}

if (document.all||document.getElementById) {
	document.write('<span id="countupie" style="width:'+countupwidth+'; background-color:'+countupbgcolor+'"></span>')
}

window.onload = start_countup

function countup(){
	var today  = new Date()
	var todayy = today.getYear()
	if (todayy < 1000)
	todayy+=1900
	var todaym   = today.getMonth()
	var todayd   = today.getDate()
	var todayh   = today.getHours()
	var todaymin = today.getMinutes()
	var todaysec = today.getSeconds()
	var todaystring = montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
	paststring   = montharray[mo-1]+" "+da+", "+yr

	dd    = Date.parse(todaystring)-Date.parse(paststring)
	dday  = Math.floor(dd/(60*60*1000*24)*1)
	dhour = Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
	dmin  = Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1)
	dsec  = Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1)

	if (dmin < 10) dmin = '0' + dmin
	if (dsec < 10) dsec = '0' + dsec

	var costpersecond = 3.90/1440 * 15/19 // returns euro/second; 15 sigaretten per dag
	var totalcosts    = costpersecond * (dd/60000)
	totalcosts        = Math.round(totalcosts * 100) / 100
	totalcosts        = '<br>' + totalcosts + '&euro;' // now savings! ;-)


	if (document.all||document.getElementById){
		crosscount.innerHTML = opentags+dday+ " days, "+dhour+":"+dmin+":"+dsec+"s "+totalcosts+closetags
	}

	
	setTimeout("countup()",1000)
}