If you're dealing with a character controller, then you should use OnControllerColliderHit.
var myLevel : String;
function OnControllerColliderHit (hit : ControllerColliderHit)
{
if (hit.gameObject.name == "Runner")
{
Application.LoadLevel(myLevel);
}
}