/*
 *
 *  Functions
 *
 */

function openWindow(url, width, height)
{
  var window = null;
 
  window = open (url, "PopupWindow", "toolbar=no,location=0,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height);
  window.focus();
}

