<!--
//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 = "Saturday"      

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

else if(myday == 2)
        day = "Tuesday"   

else if(myday == 3)
        day = "Wednesday"   

else if(myday == 4)
        day = "Thursday"

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

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

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

else if(mymonth ==1)
         month = "February"

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

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

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

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

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

else if(mymonth ==7)
       month = "August"

else if(mymonth ==8)
      month = "September"

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

else if(mymonth ==10)
     month = "November"

else if(mymonth ==11)
     month = "December"


//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){
  contentEng.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
//-->