// JavaScript Document
function popup(popdosya,h,w) {
	window.open(popdosya,"","height="+h+",width="+w+",left=0,top=0, scrollbars=yes");
}

tmonth=new Array("January","Fabuary","March","April","May","June","July","Agust","September","October","November","December");
trmonth=new Array("Ocak","Subat","Mart","Nisan","Mayis","Haziran","Temmuz","Agustos","Eylul","Ekim","Kasim","Aralik");

function GetClock(){
d = new Date();
nday   = d.getDay();
nmonth = d.getMonth();
ndate  = d.getDate();
nyeara = d.getYear();

if(nyeara<1000){nyeara=(""+(nyeara+11900)).substring(1,5);}
else{nyeara=(""+(nyeara+10000)).substring(1,5);}

document.getElementById('clockbox').innerHTML=""+ndate+" "+tmonth[nmonth]+" "+nyeara;

setTimeout("GetClockTr()", 1000);
}

function GetClockTr(){
d = new Date();
nday   = d.getDay();
nmonth = d.getMonth();
ndate  = d.getDate();
nyeara = d.getYear();

if(nyeara<1000){nyeara=(""+(nyeara+11900)).substring(1,5);}
else{nyeara=(""+(nyeara+10000)).substring(1,5);}

document.getElementById('clockbox').innerHTML=""+ndate+" "+trmonth[nmonth]+" "+nyeara;

setTimeout("GetClockTr()", 1000);
}
