window.onload = initPage;  
// Make sure that no other javscripts assign a fuction to window.onload
// There can be only one window.onload at a time

function initPage() {
  
  //unobtrusive Popups
  initPopupLinks();
  
  //Unobtrusive Rollovers
  //PreSimpleSwapOnload(); 
  SimpleSwapSetup();
}