How can I set the window location on multiple monitor with GLUT?

Hello, I’m using glut to handle the window screen.

So far, I’ve used these…

glutInit(&argc, argv);
glutInitContextVersion(3, 1);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB);
glutInitWindowSize(SCREEN_WIDTH, SCREEN_HEIGHT);
glutCreateWindow("Framebuffers");

This will bring up the window on the top left of my main monitor, but I would like to display the window on my secondary monitor (at any location).

Anyone have any ideas how to do that?

Thank You.