﻿function PopupWin(url, name, options)
{
  var NewWindow = window.open(url,name,options);
  NewWindow.focus();
  return false;
}

