Is it possible to get the target of a skill that was cast using a charScript?

EVENT OnSkillCast
VARS
CHARACTER:_Target
ON
OnSkillCast(__Me, "SomeSkill")
ACTIONS
IF "c1"
//acquire target <- how to do this?
THEN
//do something
ENDIF


Any help is much appreciated. Thanks smile