//REFERENCE PAGE TAG
// CONSTANTS
var ct = "<img src=";
var cd = "http://support.pb.com"; //this should contain the domain of the
                                 //web site that will host the page tag

var cu = "/images/zag.GIF?Log=1"; 
                                 //this should contain the full path to
                                 //the zag.gif file (excluding domain) and
                                 //include the query string of log=1

var ce = ">";
var SQ = SQP;
 SQ = SQ.replace(new RegExp(/\s+/g),"+"); 
//alert(SQ);
var c = {};
c["sw"] = screen.width;
c["sh"] = screen.height;
c["cd"] = screen.colorDepth;
var co = "";

for ( cKey in c ) {
	co = co+"&"+cKey+"="+escape(c[cKey]);
}

document.write(ct,cd,cu,SQ,co,ce);

var d = {};
d["dt"] = document.title;
d["dr"] = document.referrer;
d["cb"] = new Date().getTime();
var vo = "";

if (typeof d != "undefined") {
	for ( vKey in d ) {
		vo = vo+"&"+vKey+"="+escape(d[vKey]);
	}
}
for ( dKey in d ) {
	vo = vo+"&"+dKey+"="+escape(d[dKey]);
}
document.write(ct,cd,cu,SQ,vo,ce);
//END REFERENCE PAGE TAG
