// start profiler tracking tag

function profilerLink() 
	{ document.cookie = "profilerCookie=true;path=/"; }

function readCookie() { 
	var nameEQ = "profilerCookie="; 
	var ca = document.cookie.split(';'); 
		for(var i=0;i < ca.length;i++) 
			{ var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); 
			if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } 
	return "END"; }


var profilerCookieValue = "FALSE";
profilerCookieValue = readCookie();
document.cookie = "profilerCookie=false;path=/";
// test to check if cookies are enabled
if (readCookie() == "END") profilerCookieValue = "noCookiesEnabled";

if (!document.location.href.match("https:")) {
document.write("<s" + "cript language='javascript' src='http://www.profilertracking.com/justsearching/recordClicks_inside.asp?HREF=" + document.location.href + "&TITLE=" + document.title + "&PLINK=" + profilerCookieValue + "&REF=" + document.referrer + "'></sc" + "ript>"); 
} else {
document.write("<s" + "cript language='javascript' src='https://www.profilertracking.com/justsearching/recordClicks_inside.asp?HREF=" + document.location.href + "&TITLE=" + document.title + "&PLINK=" + profilerCookieValue + "&REF=" + document.referrer + "'></sc" + "ript>"); 
}

// end profiler tracking tag