﻿// JavaScript Document
function MeetFriend(p)
{
  var pi = p.selectedIndex;
  var s = p.options[pi].value;
  if(s)
  {
    window.open(s, "_blank");
  }
}

