var imgNum = 0; var iml=""; var imr=""; function makeTable(p1,p2) { var Pages = ''; Pages += ''; Pages += ''; Pages += ''; if ( p2 == 'page32' ) Pages += ''; else Pages += ''; Pages += '
Click the Image to Enlarge
'; Pages += 'Click to Enlarge Click to Enlarge
'; return Pages; } var activeNavigation = null; var activeProduct = null; var timeoutId = 0; var currentSection = ""; function showTable(idName,p2) { iml=idName; imr=p2; var element = ''; if (activeProduct != null){ element = returnDhtmlFeature(activeProduct); if (element) { element.visibility = changeElementVisibility(activeProduct, 'disable'); } } if (validateArg(idName)) { activeProduct = idName; element = returnDhtmlFeature(activeProduct); if (element) { element.visibility = changeElementVisibility(activeProduct, 'enable'); } } } function returnDhtmlFeature(arg) { var feature = null; if (document.all) { // IE 4/5 feature = document.all(arg).style; } else if (document.layers) { // N4 feature = document.layers[arg]; } else if (document.getElementById) { // NS feature = document.getElementById(arg).style; } return feature; } function changeElementVisibility(idName, state) { // change visibility of passed element var changeVisibilityTo = ""; if (document.all || document.getElementById) { // IE & N7.1 if (state == "enable" ) changeVisibilityTo = "visible"; else changeVisibilityTo = "hidden"; } else if (document.layers) { // N4 if (state == "enable") changeVisibilityTo = "show"; else changeVisibilityTo = "hide"; } return changeVisibilityTo; } function validateArg(arg) { // get boolean values for function arguments if ((arg == "undefined") || (arg == null)) return false; else return true; }