Hey,

You just have to configure the TRIS register and high or low the port connected to your relay(actually to a transistor if the self needs more than 20mA).

ex:

TRISB = %11111110

main:

high portb.0
pause 60000
low portb.0
pause...

something like that should work...

see ya...