<!--------------------アーティスト一覧用関数------------------------------
//
//
//------------------------------------------------------------------------
//

///////////////////////////////////////////////////////////////////////
//	アーティスト一覧のポップアップウインドウ表示
///////////////////////////////////////////////////////////////////////
function openArtistWindow(url,tb,loc,dir,mb,sb,res)
{
  if( tb == "no") {
    opt1 = "toolbar=no,";
  } else {
    opt1 = "toolbar=yes,";
  }
  if( loc == "no") {
    opt2 = "location=no,";
  } else {
    opt2 = "location=yes,";
  }
  if( dir == "no") {
    opt3 = "directories=no,";
  } else {
    opt3 = "directories=yes,";
  }
  if( mb == "no") {
    opt4 = "menubar=no,";
  } else {
    opt4 = "menubar=yes,";
  }
  if( sb == "no") {
    opt5 = "scrollbars=no,";
  } else {
    opt5 = "scrollbars=yes,";
  }
  if( res == "no") {
    opt6 = "resizable=no,";
  } else {
    opt6 = "resizable=yes,";
  }
  opt7 = "width=700,height=600";
  mywin = window.open(url,"ArtistWindow",opt1+opt2+opt3+opt4+opt5+opt6+opt7);
  mywin.focus();
}
//----------------->