// version 19990809.1030.mg
var c = 15;
var bar = "|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||";
function CountDown() {
	if(c > 0) {
		window.status = bar;
		bar = bar.substring(0, bar.length - 5);
		c --;
		cdID = setTimeout('CountDown()', 1000);
	} else {
		clearTimeout(cdID);
		window.status = "Go!";
	}
}
