// JavaScript Document

function coursepop() {
	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.className == "launchbig") {
				var tmpHref = anchor.href;
				anchor.href = "javascript: window.open('"+tmpHref+"','Course','scrollbars=no,statusbar=0,resizable=yes,width=1000,height=740,left=10,top=10').focus();";				
			}
	}
}
window.onload = coursepop;