///////////////////////////////////////////////////////////////////////////////
// Window pop-up functions                                                   //
///////////////////////////////////////////////////////////////////////////////

// This is the popup window for the Links page button from links on the home page only.
function windowlinkshome()
{
  window.open('pages/links.html','links','width=588,height=400,menubar=yes,toolbar=no,location=no,scrollbars=yes,resizable=yes,status=yes,directories=no,top=10,left=10');
}

// This is the popup window for the Links page button from links on the internal pages.
function windowlinks()
{
  window.open('../pages/links.html','links','width=588,height=400,menubar=yes,toolbar=no,location=no,scrollbars=yes,resizable=yes,status=yes,directories=no,top=10,left=10');
}


///////////////////////////////////////////////////////////////////////////////
// Window pop-up functions with scrollbars and resize                        //
///////////////////////////////////////////////////////////////////////////////

function newWindow(legend, size) {
  switch (size) {
    case 'sheetmusic': w=612;
                       h=600; 
                       break;
    case 'M': w=1024;
              h=786;
              break;
    case 'L': w=1280;
              h=1024;
              break;
  }
  feature = 'scrollbars=yes,width='+w+',height='+h+',resizable=yes,screenY=0,screenX=0,left=0,top=0';
  windowName = "seatWin"+size
  seatWindow = window.open(legend, windowName, feature);
  seatWindow.focus()
}
