public static string StringToMediumIMG(this string s)
        {
            ImageGenerator i = new ImageGenerator();

            return(i.imageGenerator(s, "120"));
        }
        // does the same as above, only with an Img tag...one small, and one medium.
        public static string StringToSmallIMG(this string s)
        {
            ImageGenerator i = new ImageGenerator();

            return(i.imageGenerator(s, "90"));
        }