I define lightredflash as global:
========================
#define lightredflash textcolor(140);
rmenu()
{
int choice=0;
do /*** FUNCTION TO DISPLAY MAINMENU ***/
{
rnewscr(1);lightgreen;gotoxy(35,4);cprintf("MAIN MENU"

;lightred;
gotoxy(34,5);cprintf("==========="

;reset;x=6;y=7;
for(flag=0;flag<=7;flag++)
{gotoxy(x,y);green;cprintf("%i. ",flag+1);y++;y++;}
y=7;
for(flag=8;flag<=15;flag++)
{
if(flag == 8)x=44;
else
x=43;
gotoxy(x,y);green;cprintf("%i. ",flag+1);reset;y++;y++;
}
gotoxy(9,7);reset;cprintf("Create Records In Stock Database."

;
gotoxy(9,9);cprintf("View Stock By Item Number."

;
gotoxy(9,11);cprintf("Delete Items From Stock Database."

;
gotoxy(9,13);cprintf("Update Stock Database."

;
gotoxy(9,15);lightgreen;cprintf("Add New Employees To Database."

;
gotoxy(9,17);cprintf("View Employee Database."

;
gotoxy(9,19);cprintf("Delete Employees From Database."

;
gotoxy(9,21);cprintf(" "

;
gotoxy(47,7);cyan;cprintf("Issue Stock."

;
gotoxy(47,9);cprintf("View Issues Database."

;
gotoxy(47,11);cprintf(" "

;
gotoxy(47,13);magenta;cprintf("Return Stock."

;
gotoxy(47,15);cprintf("View Returns Database."

;
gotoxy(47,17);cprintf(" "

;
gotoxy(47,19);lightred;cprintf("Print Menu. "

;
gotoxy(47,21);blue;cprintf("Secure/Restore Files."

;
lightredflash;gotoxy(52,24);cprintf("17. Close Down System."

;
x=4;y=24;lightgreen;gotoxy(x,y);cprintf("Please Select An Option: "

;
x=29;y=24;choice=rgetint(x,y);
}
while(choice != 1 && choice != 2 && choice != 3 && choice != 4 &&
choice != 5 && choice != 6 && choice != 7 && choice != 8 &&
choice != 9 && choice != 10 && choice != 11 && choice != 12 &&
choice != 13 && choice != 14 && choice != 15 && choice != 16 &&
choice != 17);
if(choice == 1)rstokdat();if(choice == 2)rviewstk(1);if(choice == 3)rdelstoc();
if(choice == 4)ramensto();if(choice == 5)rstaff();if(choice == 6)rvempmen();
if(choice == 7)rdelwork();/*if(choice == 8);*/if(choice == 9)rissfile();
if(choice == 10)rvissmen();/*if(choice == 11);*/if(choice == 12)returns();
if(choice == 13)rvretmen();/*if(choice == 14);*/if(choice == 15)rprinmen();
if(choice == 16)rfilemen();
if(choice == 17)
{
do
{
pr_bigblank();gotoxy(4,24);cprintf("Are You Sure? "

;ch=getche();getch();
}
while(ch != 'y' && ch != 'Y' && ch != 'n' && ch != 'N');
}
if(ch != 'y' && ch != 'Y')
{
return 1;
}
else
{
ropenfil(7);
fread(sptr,sizesecurity,1,sp);sptr->inuse = 0;
fseek(sp,-sizesecurity,1);fwrite (&number,sizesecurity,1,sp);
memset(sptr,0,sizesecurity);rclosfil(7);
white;clrscr();return 0;
}
}