strafe

I am using gluLookAt to position my camera.
It’s initial value is
gluLookAt( 0, 10, 15, 0, 0, 0, 0, 0, 1);
To strafe right and left, I add (or subtract) a constant value to (or from) the eye’s x value and the center x value. This seems to be ok until I start rotating. I’m not worried about that yet though.
Now I want to strafe up and down but I’m not sure how. If I was using glTranslate, I would just change the y value but just adding or subtracting to the eye and center y values doesn’t work. Just changing the center y value pans not strafes.
I just want to move my look vector up and down, keeping its length and orientation the same.

This should help
http://www.gametutorials.com/Tutorials/OpenGL/OpenGL_Pg1.htm#Camera

3DG

I rotated my up vector 90 degrees about y & used the strafing tutorial & it works fine.
Thanks.