var gp = [];function addZero( val ){return (val < 10) ? '0'+val : val;}function getMiliSec(){var date1 = new Date();var date2 = new Date( gp.dateTime );var result = date2.getTime()-date1.getTime();if(result>0) return result;return 0;}function updateClock2(){var el = document.getElementById('f1-timer-a');var str = Math.floor(getMiliSec() / 1000);var s = addZero(str % 60);str = Math.floor(str / 60);var min = addZero(str % 60);str = Math.floor(str / 60);var h = addZero(str % 24);d = addZero(Math.floor(str / 24));el.innerHTML = '' + gp.text + '' + d + 'd' + h + 'h' + min + 'm' + s + 's';setTimeout("updateClock2()", 1001 - (new Date()).getMilliseconds());}updateClock2();