Panels and texts shouldn't have parentheses (), but functions should.
Code:
FUNCTION counter_start()
{
// ...
EDIT: Ah, I see what you're trying to do. Don't call first like a function. first is an object, and you want to change one of its properties (i.e., whether it's visible). You do that like this:
Code:
first.VISIBLE = on;