// Centered Pop-Up Window (v1.0)
// (C) 2002-2003 www.smileycat.com
// Free for all users, but leave in this header
// ADAPTED BY MANUOK

var win = null;
function popUp(PageLink,Features,ex,why) {

Features = 'menubar=no,scrollbars=no,toolbar=no,location=no,directories=no,status=no,resizable=no';
  if (ex == null) ex = 500;
  if (why == null) why = 500;
  var winl = (screen.width-510)/2;
  var wint = (screen.height-500)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + ex + ',';
  settings += 'width=' + why + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += Features;
  win = window.open(PageLink,'FUN',settings);
  win.window.focus();

}
