// =====================================================
function Launch() {
  var width=974,height=643;
  var openWin=window.open("course.html","coursewindow","width="+width+",height="+height+",toolbar=no,scrollbars=no,location=no,directories=no,menubar=no,resizable=no,status=no");
  //document.location.href="course.html";
}
// =====================================================
function LaunchExit() {
  var url="exit.html";
  var strReturnValue=window.showModalDialog(url,"1","dialogWidth: 376px; dialogHeight: 230px; STATUS: no; HELP: no; TITLE: no")
  if (strReturnValue=="YES") {
    window.parent.close();
  }
}
// =====================================================
function LaunchHelp() {
  var url="help.html";
  var strReturnValue=window.showModalDialog(url,"1","dialogWidth: 575px; dialogHeight: 423px; STATUS: no; HELP: no; TITLE: no")
}
// =====================================================
function LaunchResources() {
  var url="resources.html";
  var strReturnValue=window.showModalDialog(url,"1","dialogWidth: 575px; dialogHeight: 423px; STATUS: no; HELP: no; TITLE: no")
}
// =====================================================
// launch the course - called from the html onload event
function LaunchCourse() {
  // create the SCO dynamic menu
  CreateSCOMenu();
  // intro loop start
  LoadLoopSCO();
}
// =====================================================
function SwapIMG(p_object,p_image) {
  var object=document.getElementById(p_object);
  object.style.cursor="hand";
  object.src=p_image;
}
// =====================================================

