function ColorBg(id,clr) 
{
	id.bgColor = clr;
}

var minutes;
var seconds;
var hours;

function go(){
thetime = new Date();
if(thetime.getMinutes() < 10){minutes = "0"}else minutes = "";
if(thetime.getSeconds() < 10){seconds = "0"}else seconds = "";
hours = "<b><span style=\"color:#ffffff\">" + thetime.getHours() + ":" + minutes+thetime.getMinutes() + "  " + seconds+thetime.getSeconds() + "</span>";
document.all.mess.innerHTML = hours;
setTimeout("go()",1000)}


function PopWind(name, width, height, lang) 
{
	var newWindow = window.open("dove/cartina.html?img=" + name + "&width=" + width + "&height="+ height + "&lang=" + lang,"IMG","height=" + height + ",width=" + width + ",toolbar=no,status=no,menubar=no,resizable=yes,scrollbars=yes");
}



