function openFullScreen(url){
	screenHeight	= screen.height;
	screenWidth		= screen.width;
	popupWindow		= window.open(url, '', 
		'toolbar=0, location=0, status=1, menubar=0, scrollbars=0, resizable=1,'+
		'width='+screenWidth+', height='+screenHeight+', top=0, left=0');
}



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";
	 	}
	 	if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external-map"){
		 	anchor.href="http://maps.google.com/maps?f=q&hl=en&q=940+Barnes+Bridge+Rd+Mesquite+TX+75150&ie=UTF8&z=15&ll=32.824644,-96.609607&spn=0.017455,0.053902&om=1&iwloc=A";
			anchor.target = "_blank";
		}
	}
}

window.onload = externalLinks;	
