function WriteDate()
{
  var font  = "Verdana";
  var fcolor = "#000080";
  var falign = "right";
  var fsize = "1";
  var now   = new Date();
  var month = "";
  var year  = "";
  var day  = "";
  var day  = now.getDay();
  var date  = now.getDate();

  if (now.getMonth() == 0) month = "Ocak"
  if (now.getMonth() == 1) month = "Şubat"
  if (now.getMonth() == 2) month = "Mart"
  if (now.getMonth() == 3) month = "Nisan"
  if (now.getMonth() == 4) month = "Mayıs"
  if (now.getMonth() == 5) month = "Haziran"
  if (now.getMonth() == 6) month = "Temmuz"
  if (now.getMonth() == 7) month = "Ağustos"
  if (now.getMonth() == 8) month = "Eylül"
  if (now.getMonth() == 9) month = "Ekim"
  if (now.getMonth() == 10) month = "Kasım"
  if (now.getMonth() == 11) month = "Aralık"
  
  if (now.getDay() == 0) day = "Pazar"
  if (now.getDay() == 1) day = "Pazartesi"
  if (now.getDay() == 2) day = "Salı"
  if (now.getDay() == 3) day = "Çarşamba"
  if (now.getDay() == 4) day = "Perşembe"
  if (now.getDay() == 5) day = "Cuma"
  if (now.getDay() == 6) day = "Cumartesi"
  
  // if (now.getYear() < 100) year = "19" + now.getYear()
  // if (now.getYear() >= 100) var year = "20" + now.getYear() - 18100
  year = now.getYear();

	tarih_mac=(navigator.appVersion.indexOf("Mac")!=-1)?true:false
	tarih_ie55=(navigator.appVersion.indexOf("MSIE")!=-1)?true:false;
//	ns61=(parseInt(navigator.productSub)>=20010726)?true:false
	tarih_ns6=(navigator.userAgent.indexOf("Gecko")!=-1)?true:false
  if ((tarih_mac == true) || ( tarih_ns6==true )) year = year + 1900;
  
  document.write(date + " " + month + " " + year + ", " + day );
}
