function onLoad()
{
    //var siteName = "andtheniwokeup";
    var anchors = document.getElementsByTagName('a');
    for (var i = 0; i < anchors.length; i++)
    {
        if (anchors[i].href.indexOf(window.location.host) < 0)
        {
            anchors[i].onclick = function() {
				window.open(this.href);
				return false;			
			};
        }
    
    }

}

