Gcode question

#1
So i have my printer gmax (1.5xt + if it matters) and software (slic3r files from this site) setup. when the print finishes it goes towards the screen side of the y(?) axis. what would i need to change in the gcode to go to the other side? the way its setup right now it is just easier to get to the bed from behind.
 
#2
This is the end gcode we are using in Slic3r. Or something similar.

Code:
G28 X0  ; home X axis
G28 Y0  ; home Y axis
M109 S50 T0 ; turn off right extruder
M109 S50 T1 ; turn off left extruder
M106 S[0]; Turn off fan after 50C
M104 S0 T0 ; turn off right extruder
M104 S0 T1 ; turn off left extruder
M84 ; disable motors
The command G28 Y0 brings the bed forward to home. For the gMax, home is inverted on the Y-axis so the y coordinate of home is 410. If instead of bringing the bed forward you want it to move backwards, Change G28 Y0 to G1 Y10 F5000. This will bring move the extruder to Y coordinate 10 at 5000 mm/minute.

Code:
G28 X0  ; home X axis
G1 Y10 F5000  ; Move Y axis backwards
M109 S50 T0 ; turn off right extruder
M109 S50 T1 ; turn off left extruder
M106 S[0]; Turn off fan after 50C
M104 S0 T0 ; turn off right extruder
M104 S0 T1 ; turn off left extruder
M84 ; disable motors