//this class is used to communicate between applets

import java.awt.Image;
class Middleman
{
        static int i;

        static
                {
                i = 0;
                }

        static synchronized void putInt(int newint)
                {
                i = newint;
                }
        static synchronized int getInt()
                {
                return i;
                }


}
