// Copyright (c) 2002-2003 Quadralay Corporation. All rights reserved. // function WWDropDown_Object() { this.fAnchorOpen = WWDropDown_AnchorOpen; this.fAnchorClose = WWDropDown_AnchorClose; this.fDIVOpen = WWDropDown_DIVOpen; this.fDIVClose = WWDropDown_DIVClose; } function WWDropDown_AnchorOpen(ParamID, bParamExpanded) { if ((typeof(document.all) != "undefined") || (typeof(document.getElementById) != "undefined")) { document.write(""); } } function WWDropDown_AnchorClose(ParamID, bParamExpanded) { var VarIMGSrc; if ((typeof(document.all) != "undefined") || (typeof(document.getElementById) != "undefined")) { if (bParamExpanded) { VarIMGSrc = "images/expanded.gif"; } else { VarIMGSrc = "images/collapse.gif"; } document.write(" "); document.write(""); } } function WWDropDown_DIVOpen(ParamID, bParamExpanded) { if ((typeof(document.all) != "undefined") || (typeof(document.getElementById) != "undefined")) { if (bParamExpanded) { document.write("
"); } else { document.write("
"); } } } function WWDropDown_DIVClose(ParamID) { if ((typeof(document.all) != "undefined") || (typeof(document.getElementById) != "undefined")) { document.write("
"); } } function WebWorks_ToggleDIV(ParamID) { var VarImageID; var VarIMG; var VarDIV; VarImageID = ParamID + "_arrow"; if (typeof(document.all) != "undefined") { // Reference image // VarIMG = document.all[VarImageID]; if ((typeof(VarIMG) != "undefined") && (VarIMG != null)) { // Nothing to do } else { VarIMG = null; } // Reference DIV tag // VarDIV = document.all[ParamID]; if ((typeof(VarDIV) != "undefined") && (VarDIV != null)) { if (VarDIV.style.display == "block") { if (VarIMG != null) { VarIMG.src = "images/collapse.gif"; } VarDIV.style.visibility = "hidden"; VarDIV.style.display = "none"; } else { if (VarIMG != null) { VarIMG.src = "images/expanded.gif"; } VarDIV.style.visibility = "visible"; VarDIV.style.display = "block"; } } } else if (typeof(document.getElementById) != "undefined") { // Reference image // VarIMG = document[VarImageID]; if ((typeof(VarIMG) != "undefined") && (VarIMG != null)) { // Nothing to do } else { VarIMG = null; } // Reference DIV tag // VarDIV = document.getElementById(ParamID); if ((typeof(VarDIV) != "undefined") && (VarDIV != null)) { if (VarDIV.style.display == "block") { if (VarIMG != null) { VarIMG.src = "images/collapse.gif"; } VarDIV.style.visibility = "hidden"; VarDIV.style.display = "none"; } else { if (VarIMG != null) { VarIMG.src = "images/expanded.gif"; } VarDIV.style.visibility = "visible"; VarDIV.style.display = "block"; } } } }