<!--
//Netmon2004

////////////////////////////////////////////////
//TARİH
mydate = new Date();
myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
weekday= myweekday;
myyear= mydate.getYear();
year = myyear;

if(myday == 0)
        day = "Pazar"      

else if(myday == 1)
      day = "Pazartesi"

else if(myday == 2)
        day = "Salı"   

else if(myday == 3)
        day = "Çarşamba"   

else if(myday == 4)
        day = "Perşembe"

else if(myday == 5)
        day = "Cuma"

else if(myday == 6)
        day = "Cumartesi"

if(mymonth == 0)
         month = "Ocak"

else if(mymonth ==1)
         month = "Şubat"

else if(mymonth ==2)
        month = "Mart"

else if(mymonth ==3)
       month = "Nisan"

else if(mymonth ==4)
         month = "Mayıs"

else if(mymonth ==5)
         month = "Haziran"

else if(mymonth ==6)
         month = "Temmuz"

else if(mymonth ==7)
       month = "Ağustos"

else if(mymonth ==8)
      month = "Eylül"

else if(mymonth ==9)
     month = "Ekim"

else if(mymonth ==10)
     month = "Kasım"

else if(mymonth ==11)
     month = "Aralık"


//SAAT
var timerID = null;
var timerRunning = false;
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function showtime () {
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds()
var timeValue = (hours >12 || hours==12) ? hours :"0"+hours
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += ((seconds < 10) ? ":0" : ":") + seconds
//bize uygun değil:
//timeValue += (hours >= 12) ? "AM" : "PM"
document.clock.face.value = timeValue;
timerID = setTimeout("showtime()",1000);
timerRunning = true;
}
function startclock() {
stopclock();
showtime();
}
<!--
//Image Menu ler için kullanılan
function change(newurl){
  content.location = newurl;
}
//katalog popup
function openWindow(selObj,winName,features) { 
var value = selObj.options[selObj.selectedIndex].value
  window.open(value,winName,features);
selObj.selectedIndex=0;
}
//DropDown Menu için kullanılan 
function jumpMenu(targ,selObj,restore){
var value = selObj.options[selObj.selectedIndex].value
if (value=="katalog/01.htm"){window.open(value,'katalog','width=450,height=600')
	if (restore) selObj.selectedIndex=0;};
else{if (value=="zero"){selObj.selectedIndex=0;}
    else{eval(targ+".location='"+value+"'");}
  if (restore) selObj.selectedIndex=0;}
}
//(c)Crea2004
//-->