function openPopup(sUrl, iWidth, iHeight)
{

  var oPopup = window.open(sUrl, '', 'width=' + iWidth + ', height=' + iHeight);
  oPopup.focus();

}
