/* dspysltd - display selected artistes */
function dspysltd()
   {
     var selected = "display_selected_screenlite_artistes.asp?only=yes&sid=";
     if ((screen.width == 640) && (screen.height == 480)) 
       {
        var winwdth = "width=775";
        var winhght = "height=490";
       }
     else if ((screen.width == 800) && (screen.height == 600)) 
       {
        var winwdth = "width=775";
        var winhght = "height=490";
       }
     else 
       {
        var winwdth = "width=980";
        var winhght = "height=640";
       }
     win = window.open(selected,'SelectedArtistes','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,' + winwdth + ',' + winhght + ',resizable=yes');
     if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
   }