function Country(s,n,w,t) {
 this.ccode = s;
 this.name = n;
 this.website = w;
 this.ctype = t;
}
function tooltip(i) {
 c = country[i];
 var html = '<img src="'+c.ccode+'.gif" alt="flag" /> <b>'+c.name
 if (c.ctype < 2) { html += ' (ELF)'; }
 html += '</b>';
 if (c.website) {
  html += '<br/><a href="'+c.website+'">';
  var w = c.website.substring(7);
  if (w.indexOf('/') == w.length-1) {
   w = w.substring(0,w.length-1);
  }
  html += w+'</a>';
 }
 switch (c.ctype) {
  case 1:
   html += '<br/><a href="'+c.ccode+'.html">more &raquo;</a>';
   break;
  case 2:
   html += '<br/>Developing <a href="'+c.ccode+'.html">more &raquo;</a>';
   break;
  case 3:
   html += '<br/>No lacrosse <a href="nolax.html">more &raquo;</a>';
 }
 return html;
}