//openGlossary is for opening the glossary page

function openGlossary() {
glossaryWin = window.open("/education/glossary.htm","glossary","menubar=0,toolbar=1,location=0,status=1,scrollbars=0,resizable=1,width=650,height=500");
}

// openTask is for opening Task Source Code Sample Pages
// Use the following HREF: "JavaScript:openTask('path','file');"

function openTask(path, file) {
var filep = path + file;
window.open(filep,"Task","menubar=1,toolbar=1,location=1,status=1,scrollbars=1,resizable=1,width=700,height=500");
window.blur();
}

// openSource is for opening Source Code Samples (text files)
// Use the following HREF: "JavaScript:openSource('URL');"

function openSource(file) {
window.open(file,"Source","menubar=1,toolbar=1,location=1,status=1,scrollbars=1,resizable=1,width=700,height=500");
window.blur();
}

// openMethod is for opening Access Method Information
// Use the following HREF: "JavaScript:openSource('path','filename');"

function openMethod(path, file) {
var fpath = path + file;
window.open(fpath,"Method","menubar=1,toolbar=1,location=1,status=1,scrollbars=1,resizable=1,width=700,height=500");
window.blur();
}

//openError is for unsupported functions

function openError(string) {
alert (string)
}

