//Window definitions for this site
function popupSiteWindow(uniqueID,URL,windowSize){
  var attributes = '';
  switch(windowSize){
    case 'small':
      attributes = 'width=400,height=400,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes';
      break;
    case 'large':
      attributes = 'width=650,height=500,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes';
      break;
  }
  window.open(URL,uniqueID,attributes);
}

//Requires Rad Window Manager on page (all child pages)
function popInWindow(title, url){
  var manager = GetRadWindowManager();
  var win = manager.GetWindowByName("window");
  win.SetUrl(url);
  win.SetTitle(title);
  win.Show();
}
