moving from camera to another

Hi, How can I move from camera to another or from view to another one ? thanks

Use Camera.enabled.

var camera1 : Camera; //assign in inspector
var camera2 : Camera;

camera1.enabled = false; //turn off camera1
camera2.enabled = true; //turn on camera2