// JavaScript Document
var delayLength = 5000;
var timer = setTimeout("redirect()", delayLength);

function redirect() {
	clearTimeout(timer);
	location.href = "http://www.emtecinc.com";
}