﻿// JScript File
function JSpopWin(url, width, height, scroller, resizable) {
  var outStr = 'height=' + height + ',width=' + width + "toolbar=no, location=no, directories=no, status=no, menubar=no, copyhistory=no";
  outStr= outStr + ", scrollbars=" + (scroller == true)?"yes":"no";
  outStr= outStr + ", resizable=" + (resizable == true)?"yes":"no";
  window.open(url, '_blank', outStr);
}

function JSpopImage(imgPath, imgTitle, imgWidth, imgHeight, scroller) {
  outStr = "toolbar=no, location=no, directories=no, status=no, menubar=no, copyhistory=no, resizable=no"
  outStr += ",width=" + imgWidth + ",height=" + (parseInt(imgHeight) + 60)
  if (scroller == true)
    outStr += ", scrollbars=yes"
  else
    outStr += ", scrollbars=no";

  //alert("ImagePopup.aspx?img=" + imgPath + "&title=" + imgTitle);
  winObj = window.open("ImagePopup.aspx?img=" + imgPath + "&title=" + imgTitle, 'imgviewer', outStr);
  //winObj.document.title=imgTitle;
}

