function SprayHit() {
		
	domain = document.URL.substring(7,document.URL.indexOf('/',8));
	url = 'hit.' + domain;
	
	var res;
	
	if (window.screen)
		res = screen.width + 'x' + screen.height + 'x' + screen.colorDepth;
	else
		res = '';
		
	var ord	= new Date();
	var tag = '<a href="http://' + domain + '">'
				+ '<img src="http://' + url + '/hit/?ord=' + ord.getTime() + '&res=' + res + '" style="border: none;"></a>';

	document.write(tag);
}