﻿   
       var baseText = null;
      function showPopup(divID,w,h,Pw,Ph)
      {
      var popUp = document.getElementById(divID);
      popUp.style.top = Ph +"px";
      popUp.style.left = Pw +"px";
      popUp.style.width = w + "px";
      popUp.style.height = h + "px";
     
      popUp.style.visibility = "visible";
 
      }
      
      
        
      function hidePopup(divID)
      {
      var popUp = document.getElementById(divID);
      popUp.style.visibility = "hidden";
   
      }
