Controlling Odd & Even Master Layers with VBA

The following creates a Master Layer that applies to all pages.

    Dim LAYER1 As Layer

    Set LAYER1 = ActiveDocument.Pages(0).CreateLayer("Master Layer1")

How can I create an Even Pages Master Layer with VBA?

How can I refer to an Even Pages Master Layer using VBA so that I can count its shapes and manipulate it contents?