<!-- gizle eskilerden
if (document.images) {
  var todayoff = new Image() // inactive imaj
  todayoff.src = "prtkl_0.gif"
  var todayon = new Image() // active imaj
  todayon.src = "prtkl_1.gif"
}
function act() {
  if (document.images)
    document.images.today.src = todayon.src
}
function inact() {
  if (document.images)
    document.images.today.src = todayoff.src
}

if (document.images) {
  var today1off = new Image() // inactive imaj
  today1off.src = "prtkl_0.gif"
  var today1on = new Image() // active imaj
  today1on.src = "prtkl_2.gif"
}
function act1() {
  if (document.images)
    document.images.today1.src = today1on.src
}
function inact1() {
  if (document.images)
    document.images.today1.src = today1off.src
}
	
// 

