<!--
function longdate() {
// Create Date Object and get month, day of week, and day of month properties
var months=new Array(13);
months[1]="Ocak";
months[2]="Şubat";
months[3]="Mart";
months[4]="Nisan";
months[5]="Mayıs";
months[6]="Haziran";
months[7]="Temmuz";
months[8]="Ağustos";
months[9]="Eylül";
months[10]="Ekim";
months[11]="Kasım";
months[12]="Aralık";

ddate = new Date()
dmonth = ddate.getMonth() + 1
dday = ddate.getDay() + 1
dnum = ddate.getDate()
lmonth=months[dmonth];

// Get year property and check for Y2K compliance
if (ddate.getYear() != 0 && ddate.getYear() < 2000) {
   dyear = ddate.getYear() + 1900
} else {
   dyear = ddate.getYear()
} // else

// create an array of languages
var langArray = new Array("dutch", "french", "german", "italian", "spanish","turkish");

var loc = new String(document.location);

for (i = 0; i < langArray.length; i++) {
   if (loc.indexOf(langArray[i]) > -1) {
      return;
   } // if
} // for loop

if (dnum<10) {
document.write("0" +dnum + "." + lmonth + "." + dyear );
} else
document.write(dnum + "." + lmonth + "." + dyear );


} // longdate()
// -->

