New library: RGB GLCD (LDS183 Controller)

Thanks For your help!

Here are a couple pictures:

And here is the code:

// RGB_GLCD_Bitmap (C)2010 Henning Karlsen
// web: http://www.henningkarlsen.com/electronics
//
// This program is a demo of the drawBitmap()-function.
//

#include "RGB_GLCD.h"
#include <avr/pgmspace.h>

GLCD myGLCD;

extern unsigned int icon1[0x400];
extern unsigned int icon2[0x400];
extern unsigned int tux[0x1000];

void setup()
{
  myGLCD.initLCD();
  //myGLCD.clrScr();
        myGLCD.fillScr(255,255,255);
  //myGLCD.setColor(255,255,255);
  myGLCD.print("Hello World Init",CENTER,5,255,255,255);
 
 
  // Draw a moving sinewave
  
   byte buf[126];
  int x, x2;
  int y, y2;
  int r;
  x=1;
  for (int i=1; i<3654; i++)
  {
    x++;
    if (x==127)
      x=1;
    if (i>127)
    {
      if ((x==63)||(buf[x-1]==63))
        myGLCD.setColor(0,0,255);
      else
        myGLCD.setColor(255,255,255);
      myGLCD.drawPixel(x,buf[x-1]);
    }
    myGLCD.setColor(0,255,255);
    y=63+(sin(((i*1.3)*3.14)/180)*50);
    myGLCD.drawPixel(x,y);
    buf[x-1]=y;
//    delay(3);
  }
  delay(5000);
  myGLCD.clrScr();
  myGLCD.fillScr(255,255,255);
}

void loop()
{
myGLCD.setColor(0,0,0);
  myGLCD.print("Blinking Message", CENTER,5,255,255,255);
    myGLCD.print("Line 2 stuff", CENTER,15,255,255,255);
  
 delay(1000); 
 myGLCD.setColor(255,255,255);
 myGLCD.print("Blinking Message", CENTER,5,0,0,0);
 myGLCD.setColor(0,0,0);
 myGLCD.print("Line 2 stuff", CENTER,15,255,255,255);
 delay(1000); 
  myGLCD.setColor(0,0,0);
 myGLCD.print("Blinking Message", CENTER,5,255,255,255);
 myGLCD.setColor(255,255,255);
 myGLCD.print("Line 2 stuff", CENTER,15,0,0,0);
 delay(1000); 
 
}

I have downloaded the graph code and will try and figure out the Large Font stuff.

Thank you again for your help.

Loren