<!--

document.write("<meta http-equiv='imagetoolbar' content='no'>");

function launch_course(url) {
  self.name = "course_window";
  remote = open(url, "course", "resizable,width=800,height=600");
}

function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
}

function launch_help() {
  self.name = "help_window";
  url="../../help/help.html";
  remote = open(url, "help", "resizable=no,scrollbars,width=640,height=400");
}

function launch_glossary() {
  self.name = "glossary_window";
  url="../../glossary/glossary.htm";
  remote = open(url, "glossary", "resizable=yes,scrollbars=no,width=630,height=400");
}

function launch_popups(url) {
  self.name = "popup_window";
  remote = open(url, "popup", "resizable=no,scrollbars,width=320,height=240");
}


function launch_links(url) {
	self.name = "links_window";
	url="../../links/links.html";
	remote = open(url, "links", "resizable,scrollbars,width=450,height=500");
}

function launch_notepad(url) {
  self.name = "notepad_window";
  remote = open(url, "notepad", "resizable,scrollbars,width=450,height=350");
}

function jump(fe){
        var opt_key = fe.selectedIndex;
        var uri_val = fe.options[opt_key].value;
        window.open(uri_val,'course');
        return true;
}

function close_course() {
        if(confirm("Are you sure you want to exit the Module?")) {
        window.top.close();
        }
}
//-->


