// JavaScript Document
var jedaWaktu="15:00"
if (document.images){
var acuanWaktu=jedaWaktu.split(":")
acuanWaktu=acuanWaktu[0]*60+acuanWaktu[1]*1
}
function refreshHalaman(){
if (!document.images)
return
if (acuanWaktu==1)
window.location.reload()
else{ 
acuanWaktu-=1
waktuMenit=Math.floor(acuanWaktu/60)
waktuDetik=acuanWaktu%60
setTimeout("refreshHalaman()",1000)
}
}

window.onload=refreshHalaman
