<!--

var sec = 0;

function checkTime()
{
 if( sec == 1 )
 {
  window.location = "http://www.labod.ir/algorithms";
 }
 else
 {
  sec++;
  redirect();
 }
}


function redirect()
{
 setTimeout(checkTime, 1000);
}


// -->