// Start Browser Detect
var isNav
var isIE
var coll = ""
var styleObj = ""
if (parseInt(navigator.appVersion) >=4) {
	if (navigator.appName == "Netscape") {
		isNav = true;
	} else {
		isIE = true;
		coll = "all";
		styleObj = ".style"
	}
}
// End Broswer Detect

function switchStyle(obj,styleName) {
// To swith an objects style.	
	if (isIE) {
		if (obj.className != "menuClicked")
			obj.className = styleName;
	} 
	
	
}
function menuClicked(obj) {
	var e = document.all
     for(i=0;i<e.length;i++) {
		if (e[i].className == "menuClicked")
			e[i].className = "menuNormal";
	}
	obj.className= "menuClicked";
}

function openCourseDescription(courseID) {
// Opens the 'Open Location' Dialog box
	var dialogURL = "/common/coursedescription.asp?id="+courseID
	var winFeatures = "location=0,toolbar=0,status=0,width=600,height=300,scrollbars=1";
	var openDlg = window.open(dialogURL,"openDLG",winFeatures);	
	openDlg.focus();
}	

function openCECourseDescription(courseID) {
// Opens the 'Open Location' Dialog box
	var dialogURL = "/common/cecoursedescriptions.asp?id="+courseID
	var winFeatures = "location=0,toolbar=0,status=0,scrollbars=1,width=450,height=300";
	var openDlg = window.open(dialogURL,"openDLG",winFeatures);	
	openDlg.focus();
}
