void scores() {
	int i;
	char scorestring[(sizeof(int)*2)+35];
	scorestring[strlen(scorestring)-1]='\0';
	int empty = sprintf(scorestring, "scores: red %d  yellow %d", score1, score2);

	glLoadIdentity();
	glTranslatef ( -50.0, 67.0, -125 );
	glColor3f(1.0, 0.0, 0.0);
	glRasterPos2f(5.0, -17.0);

        for(i = 0; scorestring[i] != '\0'; i++)
        {
		glutBitmapCharacter(GLUT_BITMAP_HELVETICA_18,scorestring[i]);

        }




}
