var secs;var timerID = null;var timerRunning = false;var delay = 1000;function InitImages(){secs = 5;document.all.f1.src='#';document.all.f2.src='http://www.isound.com/music/behind_bars/';StopTheClock();StartTheTimer();}function StopTheClock(){if(timerRunning)clearTimeout(timerID);timerRunning = false;}function StartTheTimer(){if (secs==0){StopTheClock();document.all.f1.src='#';}else{secs = secs - 1;timerRunning = true;timerID = self.setTimeout("StartTheTimer()", delay);}}
