
// Show help window with specified URL. Either opens window or brings to front.
function ShowProfile(url)
{
  // Window features off by default (location, menubar, etc)
  var win = window.open(url, 'Profile', 'width=520,height=400,resizable=yes,scrollbars=yes');
  win.focus();
}
