problems calling script from another script

hey everyone,

heres my code so far

var explosion :Transform;



function OnCollisionEnter () {

Destroy (gameObject);
Instantiate(explosion, transform.position, Quaternion.identity);



}

what i need now is for it to re run a script called Jet Spawn

any help?

GameObject.Find (“name of the game object with the Jet Spawn script but you should remove the space it is not good”).GetComponent (JetSpawn).enabled = true ?