// alinks
var alinks_link;
					var trackImage = new Image();
					function alinks_click(link) {
						var keyphrase = link.innerHTML;
						trackImage.src = 'http://scrapbookrescue.com/wp-content/plugins/alinks/classes/aLinksAjax.php?log=' + keyphrase;
												pause(1000);
						return true;
					}
						
					function pause(numberMillis) {
					    var now = new Date();
					    var exitTime = now.getTime() + numberMillis;
					    while (true) {
							now = new Date();
							if (now.getTime() > exitTime) return;
						}
					}
//				</script>
				
// bad behaviour

//<script type="text/javascript">
function bb2_addLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			oldonload();
			func();
		}
	}
}

bb2_addLoadEvent(function() {
	for ( i=0; i < document.forms.length; i++ ) {
		if (document.forms[i].method == 'post') {
			var myElement = document.createElement('input');
			myElement.setAttribute('type', 'hidden');
			myElement.name = 'bb2_screener_';
			myElement.value = '1174701040 24.21.206.99';
			document.forms[i].appendChild(myElement);
		}
	}
});
			function addEvent(elm, evType, fn, useCapture)
			// addEvent and removeEvent
			// cross-browser event handling for IE5+,  NS6 and Mozilla
			// By Scott Andrew
			{
			  if (elm.addEventListener){
				elm.addEventListener(evType, fn, useCapture);
				return true;
			  } else if (elm.attachEvent){
				var r = elm.attachEvent("on"+evType, fn);
				return r;
			  } else {
				alert("Handler could not be removed");
			  }
			}
			function externalLinks() {
			 if (!document.getElementsByTagName) return;
			 var anchors = document.getElementsByTagName("a");
			 for (var i=0; i<anchors.length; i++) {
			   var anchor = anchors[i];
			   if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
					anchor.setAttribute("target","_blank");
			 }
			}

			addEvent(window, "load", externalLinks);
