function onloadScripting() {
	
	/* EXTERNAL LINKS SCRIPT */
	/* USED WITH 'rel="external"' IN '<a>'*/
	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";
 	}
	/* END EXTERNAL LINKS*/
	
	
	/* RESOLUTION SCRIPT */
	/* Probably not the best way, but this script overrides the styling for the content div*/
	var content = document.getElementById('content')
	
	if(screen.width < 1024)
	{
		content.style.width = (screen.width - 175) +'px';
	}
	/*END RESOLUTION*/
}

window.onload = onloadScripting;


