﻿// JScript File

//Expanding and Collapsing Table
 function ExpandDisp(ID, imgID)
 {
 //none: not visible ; block: visible
   document.getElementById(imgID).src = 
      ((document.getElementById(ID).style.display == "none") ? "Images/iconMinus.jpg" : "Images/iconPlus.jpg");
   document.getElementById(ID).style.display = 
       ((document.getElementById(ID).style.display == "none") ? "block" : "none");
   return;
 }
 
  var myWindow = null;
         
  function openWindow(pageHtml, widthPage, heightPage) 
  {
          
         if(myWindow == null || myWindow.closed)
        {
        // open window centered 
         var width = widthPage;
         var height = heightPage;
         var left = parseInt((screen.availWidth/2) - (width/2));
         var top = parseInt((screen.availHeight/2) - (height/2));
         var windowFeatures = "width=" + width + ",height=" + height + ",menubar=no,scrollbars=yes,toolbar=no,status=no,close=yes,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
         myWindow = window.open(pageHtml, "newCenteredWindow", windowFeatures);
        }
        else
        {
          myWindow.focus();
        } 
         
   }
 
 
 
