function hit() {

	var res;
	if (window.screen)
		//res = screen.width + 'x' + screen.height + 'x' + screen.colorDepth+ '&amp;rand='+Math.random();
		res = screen.width + 'x' + screen.height + 'x' + screen.colorDepth;
	else
		res = '';

	var tag = '<IMG class="noborder" SRC="index.php?f=hit&amp;vsize=' + res + '" BORDER=0 WIDTH=0 HEIGHT=0>';

	document.write(tag);
}

function LycosHit() {
	domain = document.URL.substring(7,document.URL.indexOf('/',8));

	if (domain == "members.lycos.co.uk")
		tld = "co.uk";
	else
		tld = domain.substring(domain.lastIndexOf('.')+1);

	main = ".lycos.";

	if (tld == "fr")
		site = "multimania";
	else if (tld == "net") {
		site = "pagesperso.accesinternet";
		main = ".laposte.";
	} else {
		site = "tripod";
		if (tld == "se")
			main = ".spray.";
		if (tld == "dk")
			main = ".jubii.";
	}

	url = 'hit.' + site + main + tld;

	var res;
	if (window.screen)
		res = screen.width + 'x' + screen.height + 'x' + screen.colorDepth;
	else
		res = '';

	var ord	= new Date();
	if (main == ".laposte.") {
		var tag = '<A HREF="http://' + site + main + tld + '/build/stats/" TARGET="_blank">'
				+ '<IMG SRC="http://' + url + '/hit/?ord=' + ord.getTime() + '&amp;res=' + res + '" BORDER=0 WIDTH=0 HEIGHT=0></A>';
	} else {
		var tag = '<A HREF="http://www.' + site + main + tld + '/build/stats/" TARGET="_blank">'
				+ '<IMG SRC="http://' + url + '/hit/?ord=' + ord.getTime() + '&amp;res=' + res + '" BORDER=0 WIDTH=0 HEIGHT=0></A>';
	}

	document.write(tag);
}