Yeah, they need to be WORD-size variables to fit values larger than 255....
But if you're not going to change the value at runtime there's no real need to have them as variables, you might as well make them constants:
Code:
FLASH_ON CON 1500
FLASH_OFF CON 500
Saves on both RAM and flash memory.