﻿// JScript File
function getir(kontrol,image,back,text)
{
    document.getElementById("manset").src = image;
    document.getElementById(kontrol).style.color = text;
    document.getElementById(kontrol).style.backgroundColor = back;
}
function out(kontrol,renk,text)
{
    document.getElementById(kontrol).style.backgroundColor = renk;
    document.getElementById(kontrol).style.color = text;
}


var c=0;
var t;
var timer_is_on=0;

function timedCount()
{
c=c+1;
t=setTimeout("timedCount()",1000);
}

function doTimer()
{
if (!timer_is_on)
  {
  timer_is_on=1;
  timedCount();
  }
}

function stopCount()
{
clearTimeout(t);
timer_is_on=0;
}
