montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")

function countup(yr,m,d,h,minu){
	today=new Date()
	todayy=today.getYear()
	if (todayy < 1000)
		todayy+=1900
	todaym=today.getUTCMonth()
	todayd=today.getUTCDate()
	todayh=today.getUTCHours()	
	todaymin=today.getUTCMinutes()	
	todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin
	paststring=montharray[m-1]+" "+d+", "+yr+" "+h+":"+minu
	difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(288*1000))*1)+10029000
	sep=difference.toString();
	imagenes=sep.split("");

	var calculo=("<img src='numeros/"+imagenes[2]+".png' alt='' width='22' height='18'/><img src='numeros/"+imagenes[3]+".png' alt='' width='22' height='18'/><img src='numeros/"+imagenes[4]+".png' alt='' width='22' height='18'/><img src='numeros/"+imagenes[5]+".png' alt='' width='22' height='18'/><img src='numeros/"+imagenes[6]+".png' alt='' width='22' height='18'/><img src='numeros/"+imagenes[7]+".png' alt='' width='22' height='18'/>");
	return calculo;
}