/* ======================================================================

     JavaScript Source File -- Created with NetObjects ScriptBuilder

NAME: apppath.js

AUTHOR: DeveloperNet Web Team and Robert Rodriguez

PURPOSE: To open glossary and task windows.
====================================================================== */



function openGlossary() {
glossaryWin = window.open("/education/glossary.htm","glossary","menubar=0,toolbar=1,location=0,status=1,scrollbars=0,resizable=1,width=605,height=475");
}

// openTask is for opening Task Source Code Sample Pages
// Use the following HREF: "JavaScript:openTask('URL');"

function openTask(file) {
window.open(file,"Task","menubar=1,toolbar=1,location=1,status=1,scrollbars=1,resizable=1,width=600,height=600");
window.blur();
}

// openTask is for opening Task Source Code Sample Pages
// Use the following HREF: "JavaScript:openTask('URL');"

function openSource(file) {
window.open(file,"Source","menubar=1,toolbar=1,location=1,status=1,scrollbars=1,resizable=1,width=500,height=500");
window.blur();
}



