// blitting routines
void CSurface::BlitTo(CSurface& aDest, TInt aX, TInt aY)
{
   aDest.Gc().BitBlt(TPoint(aX,aY), iBitmap);
   return;
}