<!--// Popup Loader Here



// GET SCREEN SIZE (JavaScript 1.2 only)

var _top=60;

var _left=70;

bName = navigator.appName;

bVer = parseInt(navigator.appVersion);

// for centering

if ( ( (bName == "Microsoft Internet Explorer") || (bName == "Netscape") ) && (bVer >= 4) ) {

	w=screen.width

	h=screen.height

	if (screen.width > 1024) { w = 1024 }

	if (screen.height > 768) { h = 768 }

	  // set size

	_top = ( 200 );

	_left = ( 300 );

}

else {

}

// END SCREEN SIZE ------------------------------------------------------



function pop(page,sizew,sizeh) {

	window.onerror=null;

    if (sizew == null) {sizew=660;sizeh=400;}

	if (bVer >= 3) {

		var _loc = page;

		var _sizew = sizew;

		var _sizeh = sizeh;

		var _params = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + _sizew +",height=" + _sizeh + ",top=" + _top + ",left=" + _left;
//var _params = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + _sizew +",height=" + _sizeh + ",top=" + _top + ",left=" + _left;

		var xwin = window.open(_loc,"popup",_params);

		if (xwin.opener == null) { xwin.opener = self; }

		xwin.focus();

	}

}




function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
for (var i=0; i < anchors.length; i++) {
	if (anchors[i].getAttribute("href") &&

	anchors[i].getAttribute("rel") == "external") {
		anchors[i].target = "_blank";
	}
}
}
window.onload = externalLinks;

//-->


