//Frame breakout
if (top != self) top.location.href = location.href;

//Google analytics
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
if (typeof(_gat) == 'object')
{
	var pageTracker = _gat._getTracker("UA-6039831-1");
	pageTracker._trackPageview();
}

//Onload events
function init() {
 //Make all rel="external" links open in a new window
 //See http://www.sitepoint.com/article/standards-compliant-world
 // Stopping rel=external opening new windows
 /*
 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.target = "_blank";
 }*/
}

// window.onload = init;