//---------------Browser Check

var browserType=new checkBrowserType();

function checkBrowserType(){
	this.IE=(navigator.userAgent.indexOf("MSIE")!=-1);
	this.IE6=(navigator.userAgent.indexOf("MSIE 6.")!=-1);
	this.IE5=(navigator.userAgent.indexOf("MSIE 5.")!=-1);
	this.IE4=(navigator.userAgent.indexOf("MSIE 4.")!=-1);
	this.Opera=(navigator.userAgent.indexOf("Opera")!=-1);
}


//---------------New Window

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.target = "_blank";
 }
}



//---------------Onload

function initload() {
	externalLinks();
}

window.onload = initload;
