// **************************************************************************************
// www.teamhb.org
// --------------------------------------------------------------------------------------
// hbclock.js
//
// [ Javascript for managing and displaying of the TeamHB time ]
// last update : 24.02.2009
//
// + 24.02.2009 - File brought to life
// --------------------------------------------------------------------------------------
// (c)2009 www.teamhb.org
// **************************************************************************************

var serverdate=new Date(currenttime)
function padlength(what)
{
	var output=(what.toString().length==1)? "0"+what : what;
	return output;
}

function displaytime()
{
	serverdate.setSeconds(serverdate.getSeconds()+1);
	var timestring=padlength(serverdate.getHours())+":"+padlength(serverdate.getMinutes())+":"+padlength(serverdate.getSeconds());
	document.getElementById("servertime").innerHTML=timestring;
}
