var timer = setTimeout("hasFlash(false)", 5000);

function hasFlash(b) {
	if (b) {
		clearTimeout(timer);
	} else {
		document.location = base + "noflash/";
	}
}
