var dayarray=new Array("duminic&#259;","luni","mar&#355;i","miercuri","joi","vineri","s&#226;mb&#259;t&#259;")
var montharray=new Array("01","02","03","04","05","06","07","08","09","10","11","12")
function getthedate(){
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var hours=mydate.getHours()
var minutes=mydate.getMinutes()
var seconds=mydate.getSeconds()
if (hours<10)
hours="0"+hours
if (hours>=12)
hours=hours
if (hours==0)
hours=hours
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var cdate="<span style='padding:0 3 0 3;font:500 11px arial;cursor:hand;' onclick='javascript:cd1();' title='click pentru CALENDAR / ceas'><span style='color:navy;'>"+dayarray[day]+"</span>"+","+daym+"."+montharray[month]+"."+year+","+"<span style='color:#990033;'>"+hours+":"+minutes+":"+seconds+"</span></span>"
if (document.all)
document.all.clock.innerHTML=cdate
else if (document.getElementById)
document.getElementById("clock").innerHTML=cdate
else document.write(cdate)}
if (!document.all&&!document.getElementById)
getthedate()
function goforit(){
if (document.all||document.getElementById)
setInterval("getthedate()",1000)}
window.onload=goforit
function cd1(URL) {window.open("cd/main.htm","","toolbars=0,scrollbars=0,location=0,status=0,menubars=0,resizable=0,width=210,height=195,top=345,left=594");}