﻿function openPopup(url, windowName, width, height)
{
  popup = window.open(url, null, 'width=' + width + ',height=' + height);
  if (window.focus) { popup.focus() }
  return false;
}