function qs_passthru(){
	var qs = location.search.substring(1);
	var tags = document.getElementsByTagName("a");
	var psname = "";

	for(var i = 0; tags.length > i; i++){
		// find out what the proxyname is...
		if ( tags[i].href.length == 0 ) {
			continue;
		}
		if ( psname == "" ) {
			if ( tags[i].href.indexOf('cjbid') > -1) {
				psname = tags[i].href;
			} 
			if ( tags[i].href.indexOf('schoolI') > -1 ) {
				psname = tags[i].href;
			}
		}
        if(qs){
			if(tags[i].search.length){
				joiner="&";
			} else {
				joiner="?";
			}
			if ( tags[i].href.indexOf('#') == -1 ) {
				// ONLY change tags that are not relative
				tags[i].href = tags[i].href + joiner +qs;
			}
		}
	}
	var psprog = psname.substring( 0, psname.indexOf('?') );
	if ( psprog.length == 0 ) {
		// psprog = "proxy.php";
	} else {
		if (( qs.indexOf('SID=') == -1 ) && ( qs.indexOf( 'TEST=') == -1)) {
			// check that the SID string is NOT in the qs string..
			// SID in the query string means the request came from a google link. 
			// This already went thru the engine and generated its
			// own OFFER_CLICK event. We need not generate it again via a PIXEL.
			var bodytag = document.getElementsByTagName( "body" ).item(0);
			trkpixel = document.createElement("IMG");
			bodytag.appendChild( trkpixel );
			if (qs){ joiner="&" } else { joiner="" }
			var imgsrc = psprog + "?req=PIXEL" + joiner + qs; 
//alert( 'imgsrc=' + imgsrc );
			trkpixel.setAttribute( "src", imgsrc );
			bodytag.appendChild( trkpixel );
		}
	}
}
