function lst_OnTouch( title, body, type, index )
{
app.ShowPopup( "id: " + title + " nick: " + body );
}
function lst_OnLongTouch( title, body, type, index )
{
app.ShowPopup( "id: " + title + " nick: " + body );
}
function lst_OnTouch( title, body, type, index )
{
//Shows the index of the touched item
app.ShowPopup(index)
}
function lst_OnTouch( item )
{
//Shows the touched item
app.ShowPopup(item)
}
----