// Timer/Loading Scripti
// Yazar: Caner ÖNCEL
// Url: http://www.egonomik.com

var sure = 5;
var saniye=document.getElementById("kalan").innerHTML = sure+ 1;

function showMe(blockId)  {    
 	document.getElementById(blockId).style.display = "block";  }  
function hideMe(blockId)  {    
 	document.getElementById(blockId).style.display = "none";  }
function goster() {
	showMe('resim');
	hideMe('mesaj');  }

function final(){ 
  if (saniye!=1){ 
    saniye-=1; 
    document.getElementById("kalan").innerHTML  = saniye;   } 

  else{ 
    window.location = "http://www.veah.gov.tr/";
    return;
} 

  setTimeout("final()",1000);
} 
final();
