You don't need to put anything, just read what you need in the actual script.
Example:
PHP Code:
function whatever_tab.onSelect(tabid,tabtext,tabindex)
{
switch(tabtext)
{
case "Bob":
player.chat = "Bob tab selected!";
break;
case "Bill":
player.chat = "Bill tab selected!";
break;
}
}
etc...