function GlobalPopUp( url, name, width, height, left, top, scroll, options ) {
day = new Date();
id = day.getTime();
  if ( ! width ) width = 640;
  if ( ! height ) height = 420;
  if ( ! left ) left = 150;
  if ( ! top ) top = 20;
  if ( ! scroll ) scroll = 0;
  if ( ! options ) options = "menubar=no,toolbar=no,location=no,status=no,resizable=no";
  var newWin = window.open( url, name, "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",scrollbars=" + scroll + "," + options );
}
//

