function BumpAndGo(counter,link) {
	var img = new Image();
	counter += ".cgi";
	img.src = "http://softwarebychuck.com/cgi-bin/counter/" + counter;
	setTimeout(function(){document.location = link},100);
}

function BumpAndGo2(counter,link) {
	var msg="To install the downloaded file, rename the .zip to .xpi and open in Firefox (File > Open File...)"
	alert(msg);
	BumpAndGo(counter,link)
}
