// 
// Code to perform click-tracking functionality for SiteCompass
// Places a "Web Bug" between the BODY tags.
//


var r        = escape(document.referrer); 
var url      = escape(location.href); 
var domain   = 'http://www.sitecompass.com/';
var protocol = location.protocol;

if (protocol == 'https:') 
{ 
	domain = 'https://secure.sitecompass.com/'; 
}

 document.write("<img src='" + domain + 
	"logo.php?acct=55&referrer=" + r + 
	"&url=" + url + "' height='1' width='1'>");