/* selector - display appropriate artiste CV */
function selector(mode,V1,V2){
  if (mode==2) {
//     alert('yo yo!');
     var artistecv = "selected_artiste_cv_screenlite_the_agency.asp?pid=" + V1 + "&pg=" + V2;
     if ((screen.width == 640) && (screen.height == 480)) 
       {
        var winwdth = "width=550";
        var winhght = "height=550";
       }
     else if ((screen.width == 800) && (screen.height == 600)) 
       {
        var winwdth = "width=550";
        var winhght = "height=550";
       }
     else 
       {
        var winwdth = "width=650";
        var winhght = "height=650";
       }
     win = window.open(artistecv,'ArtisteCV','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,' + winwdth + ',' + winhght + ',resizable=yes');
     if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
  }
}

