//******************************************************************************************************

id = "st397";

//******************************************************************************************************

//If you're using a frameset and are not getting correct referrers, please uncomment the following line:
// pp_frames = true;

//*************************************** Define some defaults *****************************************

//Define some defaults
if(showme==null) var showme='n';

//*************************************** Get the user agent name **************************************

//Get the user agent name
v = navigator.appName;

//************************************* Get the screen resolution **************************************

c=0;
if (v != "Netscape") c = screen.colorDepth;
else c = screen.pixelDepth;

//*************************************** Get the screen size ******************************************

s = screen.width+"x"+screen.height;

//*************************************** Get the document's title *************************************

//Get the document's title
t = escape(document.title);

//************************************** Get the document's referrer ***********************************

var f = "";

//If pp_frames is true then try getting the framed referral (without error checking)
if (typeof(pp_frames) != "undefined")
	if (pp_frames)
		f = top.document.referrer;

//Get the referral for non-multi-domained-framed sites using a Netscape browser
if ((f == "") || (f == "[unknown origin]") || (f == "unknown") || (f == "undefined"))
	if (document["parent"] != null) 
		if (parent["document"] != null) // ACCESS ERROR HERE!
			if (parent.document["referrer"] != null) 
				if (typeof(parent.document) == "object")
					f = parent.document.referrer; 

//Get the referral for the current document if a framed referral wasn't found
if ((f == "") || (f == "[unknown origin]") || (f == "unknown") || (f == "undefined"))
	if (document["referrer"] != null) 
		f = document.referrer;

//Convert all the unknown's into blank
if ((f == "") || (f == "[unknown origin]") || (f == "unknown") || (f == "undefined"))
	f = "";

// escape the referral
f = escape(f);

//******************************** Getting data ready to send ***************************************

r="?id="+id+"&referer="+f+"&r="+s+"&c="+c+"&showme="+showme+"&title="+t;

if (v != "Microsoft Internet Explorer") {
	r = r+"&url="+document.URL; // $HTTP_REFERER problem with NS,...
}
document.open();
document.write("<img alt=\"Free Live Web Statistics\" src=\"http://www.webseomasters.com/web-stats/stats.php"+r+"\" border=\"0\">");
document.close();

//**************************************** Done! ***************************************************