function popupWindow(url, imgw, imgh) {
  var width = imgw + 20;
  var height = imgh + 60;
  var w = window.open(url,'_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=' + width + ',height=' + height + ',screenX=150,screenY=150,top=150,left=150');
  w.window.focus();
}

function popupVideo(url, imgw, imgh) {
  var width = imgw + 20;
  var height = imgh + 116;
  var w = window.open(url,'popupVideo','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=' + width + ',height=' + height + ',screenX=150,screenY=150,top=150,left=150');
  w.window.focus();
}

function spopupWindow(url, imgw, imgh) {
  var width = imgw + 20;
  var height = imgh + 60;
  var w = window.open(url,'_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=' + width + ',height=' + height + ',screenX=150,screenY=150,top=150,left=150');
  w.window.focus();
}
