<!-- Script Begin

function openWindow(cont, w, h)
{
  sh = screen.availHeight;
  if (sh <= 600) h = sh - 32;
  window.open(cont,'','width=' + w + ',height=' + h + ',top=0,left=0,scrollbars=yes,resizable=yes');
}

function openMessWindow(cont, w, h)
{
  sh = screen.availHeight;
  if (sh <= 600) h = sh - 32;
  window.open(cont,'','width=' + w + ',height=' + h + ',top=0,left=0');
}

//  Script End -->
