function statsLink() {
	var theURL = window.prompt('Please enter the address of your website');
	if (theURL.indexOf("http://")==0) theURL = theURL.substring(7);
	if (theURL.indexOf("https://")==0) theURL = theURL.substring(8);
	while (theURL.indexOf("/")!=-1) theURL = theURL.substring(0,theURL.lastIndexOf("/"));
	self.location.href="http://hosting.gtp.com.au/cgi-bin/awstats.pl?config="+theURL;
}