function adjustWidth() {
	if (document.getElementsByTagName('body')[0].clientWidth < 1051) {
		document.getElementById('page').style.width = "989px";
		document.getElementById('container').style.marginLeft = "0px";
	}
}
function loadVideo(video) {
	document.getElementById("video").innerHTML = '<object classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" width="334" height="280"><param name="fileName" value="'+video+'" /><param name="autoStart" value="true" /><param name="showControls" value="true" /><param name="enableContextMenu" value="false"><embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="'+video+'" width="334" height="280"></embed></object>';
	document.getElementById("video_text").innerHTML = 'Please give the player a minute to download the full video.';
	window.location="#video";
}
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";
	}
}