
////////////////////*Function for PopUp Window - Customer One Img *///////////////////////

// ***** popup_show ************************************************************

function popup_show(id) {
  var element      = document.getElementById(id);

  var width        = window.innerWidth  ? window.innerWidth  : document.documentElement.clientWidth;
  var height       = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight;

  element.style.position = "absolute";
  element.style.display  = "block";

}


////////////////////*Function for PopUp Window Close *///////////////////////

function closepopup(id) {
  var element      = document.getElementById(id);
  element.style.display  = "none";
}

