var on="";
var uname;

function clockstart() {
today = new Date();
hours = today.getHours();
minutes = today.getMinutes();
seconds = today.getSeconds();
TimeValue = hours;
TimeValue += ((minutes < 10) ? ":0" : ":") + minutes;
TimeValue += ((seconds < 10) ? ":0" : ":") + seconds;
var hod=document.getElementById("hodi");
hod.innerHTML = TimeValue+"&nbsp;&nbsp;";
window.setTimeout("clockstart()",500);
}

function boldit(idname)
{
var belm;
	belm=document.getElementById(idname);
	belm.style.fontWeight="bold";
}

function boldout(idname)
{
var belm;
	belm=document.getElementById(idname);
	belm.style.fontWeight="";
}


