/*-----------------------------------------------------------------
Functions to do on body load
-----------------------------------------------------------------*/
function DMscripts() {
	if (document.body.clientWidth < 1024) {
		window.resizeTo(1024,screen.availHeight);
	}
	if (document.body.clientHeight < screen.availHeight ) {
		window.resizeTo(document.body.clientWidth,screen.availHeight);
	}
	externalLinks();
}

/*-----------------------------------------------------------------
Open External Links in a 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("rel") == "me" || anchor.getAttribute("rel") == "external" || anchor.getAttribute("rel") == "nofollow" || anchor.getAttribute("rel") == "external nofollow" || anchor.getAttribute("rel") == "nofollow external") {
				if (anchor.getAttribute("href")) anchor.target = "_blank";
			}
	}
}