function openWindow(url, target, style)
{
  var win = window.open(url, target, style);
  win.focus();
}
