var font  = "Verdana";

var fcolor = "#000000";

var falign = "right";

var fsize = "1";

//STRING LITERAL//
var Months = new Array("Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık");

//STRING LITERAL//
var Days = new Array("Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi");

var now   = new Date();

var year  = now.getYear();

if (year<1900)
	year += 1900;

document.write('<font size="' + fsize + '" face="' + font + '" color="' + fcolor + '" align="' + falign + '">');
//STRING LITERAL//
document.write( now.getDate() + " " + Months[now.getMonth()] + " "+ year + " " + Days[now.getDay()]);
document.write ("</font>");