/** Developed by Fusion Learning Systems, 2004* Exception: All MM_ methods are MacroMedia.*///*********************************************************************************//// This function lauches the popup window// Browser detect opens different size window to accomodate Netscape// Netscape window: 788 X 525// IE window: 788 X 494  // May have to adjust size for MAC//*********************************************************************************//function loadLecturePopupWdw(whichLecture,whichPart) {var bName=navigator.appName;var bVer=parseInt(navigator.appVersion);var platform=navigator.platform.substr(0,3);// If user OS is Windowsif (platform=="Win") {	//Netscape	if ((bName=="Netscape") && (bVer<=4)) {		popupWindow = window.open(whichLecture+"/lecture.html?part="+whichPart,'popupwindow','width=770,height=502,resizable=yes,menubar=yes');		}	//MSIE4	else {		popupWindow = window.open(whichLecture+"/lecture.html?part="+whichPart,'popupwindow','width=770,height=502,resizable=yes,menubar=yes');	}	// If user OS is Mac} else if (platform=="Mac") {	//Netscape	if ((bName=="Netscape") && (bVer>=4)) {		popupWindow = window.open(whichLecture+"/lecture.html?part="+whichPart,'popupwindow','width=750,height=525,resizable=yes,menubar=yes');	}	//MSIE	else {		popupWindow = window.open(whichLecture+"/lecture.html?part="+whichPart,'popupwindow','width=750,height=494,resizable=yes,menubar=yes');		}	} }