


window.onload = init;
function init() {
  cd();
}
function cd() {
	setTimeout("redo()",30000);
	}
function redo() {
		
		window.location = "index.html";
		
		
		}
