function BumpAndGo(counter,link) {
	var img = new Image();
	counter += ".cgi";
	img.src = "http://customsoftwareconsult.com/cgi-bin/counter/" + counter;
	setTimeout(function(){document.location = link},100);
}