function show2(){
if (!document.all&&!document.getElementById)
return
thelement=document.getElementById? document.getElementById("tick2"): document.all.tick2
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()


if (minutes<=9)
minutes="0"+minutes


var cas=hours+" hodin "+minutes

thelement.innerHTML="<b>Vítejte, právě je "+cas+" minut a Vy se nacházíte na webových stránkách překladatelské firmy Motylek Conference Services</b>"
setTimeout("show2()",60000)

}
window.onload=show2


