function popupPrint(fileName) 
{
  window.open(fileName,
              "windowPrint",
              "width=540,height=400,status=no,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes");
}

function popupEmail(title,URL) 
{
  window.open("popup-email.cgi?emailPageTitle="+title+"&emailPageURL="+URL,
              "windowEmail",
              "width=500,height=500,location=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
}

function popupStore() 
{
  window.open("http://stores.musictoday.com/nma",
              "windowStore",
              "status=yes,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes");
}

function popupStoreItem(itemURL) 
{
  window.open(itemURL,
              "windowStore",
              "width=640,height=450,status=yes,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes");
}

function popupJoin() 
{
  window.open("popup-join.shtml",
              "windowStore",
              "width=450,height=240,status=yes,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes");
}

function popupRequest() 
{
  window.open("popup-request.shtml",
              "windowStore",
              "width=500,height=380,status=yes,menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
}

function popupContest() 
{
  window.open("popup-contest.html",
              "windowContest",
              "width=500,height=380,status=yes,menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
}

function popupBoard() 
{
  window.open("http://www.vigetx.com/bb/nma",
              "windowBoard",
              "width=790,height=450,status=yes,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes");
}

function popupTell() 
{ 
  url = 'http://www.supertell.com/supertell.php?sid=978A75A17764E9F85FFA881095DCD79F'; 
 
  stWindow = window.open(url, 
                         'superTell', 
                         'width=660,height=550,status=yes,menubar=no,' + 
                         'toolbar=no,scrollbars=yes,resizable=yes'); 
  stWindow.focus(); 
}

function popupJukebox(whichJukebox) 
{
  window.open(whichJukebox,
              "windowJukebox",
              "width=200,height=440,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=no");
}

function popupPlayer(whichPlayer) 
{
  window.open(whichPlayer,
              "windowPlayer",
              "width=380,height=275,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=no");
}

function popupMedia() 
{
  window.open("flash/mediaplayer/player.html",
              "windowMedia",
              "width=562,height=356,status=yes,menubar=no,toolbar=no,scrollbars=no,resizable=no");
}

function popupPlay(fileURL) 
{
  window.open(fileURL,
              "windowPlay",
              "width=350,height=300,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=no");
}

function popupPhoto(strImage, iWidth, iHeight, strCaption, iWhich)
{
  strUrl  = "popup-photo.cgi?image=" + strImage + "&width=" + iWidth + "&height=" + iHeight + "&caption=" + strCaption;

  iWidth  += 54;
  iHeight += 190;

//  if (iHeight > 580) { iHeight = 580; }
  if (iHeight > 640) { iHeight = 640; }
  if (iWidth > 750) { iWidth = 750; }

  oWindow = window.open(strUrl, 'winPhoto',
   'width=' + iWidth + ',height=' + iHeight + ',status=no,menubar=no,toolbar=no,scrollable=yes,scrollbars=yes,resizable=yes');

  oWindow.resizeTo(iWidth,iHeight);
  oWindow.focus();
}
