function milo(adr, serv)
{
	if(serv!='') return adr + "@" + serv;
	else return adr;
}

function namilo(adr, serv, sub)
{
	eml="mailto:" + milo(adr, serv);
	if (sub != "") eml += "?subject=" + sub;
	return eml;
}

/*
HTMLElement.prototype.__defineSetter__("innerText", function (sText) {
   this.innerHTML = sText.replace(/\&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;");
   });
*/   
function vremya()
{
	var now = new Date();
	month=new Array(" января "," февраля "," марта "," апреля "," мая "," июня "," июля "," августа "," сентября "," октября "," ноября "," декабря ");
	hours = now.getHours();
	if (hours<=9) {hours="0"+hours;}
	minutes = now.getMinutes();
	if (minutes<=9) {minutes="0"+minutes;}
	day = now.getDate();
	//if (day<=9) {day="0"+day;}
	mymonth = now.getMonth()+1;
	if (mymonth<=9) {mymonth="0"+mymonth;}
	year = now.getFullYear();

	if (document.all || document.getElementById) {
               document.getElementById('date').innerText=day+"."+mymonth+"."+year;
               document.getElementById('time').innerText=hours+":"+minutes;
	}

	setTimeout('vremya()',2000);
}