function findrow( x,y,z )
for i,v in ipairs ( CameraList ) do
if v[1] == x and v[2] == y and v[3] == z then
return i;
end
end
end
addEventHandler("onClientGUIClick",root,function ()
if source == Dc then
local aSelected = guiGridListGetSelectedItem ( CameraList ) ;
if ( aSelected ~= -1 ) then
local aElement = guiGridListGetItemData ( CameraList , aSelected , 1 ) ;
table.remove(CameraList, findrow( unpack( aElement ) ) )
Loob ( )
end
end
end)