// This appears in Core Web Programming from
// Prentice Hall Publishers, and may be freely used
// or adapted. 1997 Marty Hall, hall@apl.jhu.edu.

public class CssChoices {
  public static  String[] names =
    { "repeatVisitor", "headingFont", "headingSize",
      "headingAlignment", "bgColor",
      "indent1", "indent2" };
  public static String defaults =
    "headingFont=Times+New+Roman; " +
    "headingSize=30; " +
    "headingAlignment=left; " +
    "bgColor=white; " +
    "indent1=0.25; " +
    "indent2=0.50";
  public static String[] bgColor =
    { "white", "gray", "ivory",
      "whitesmoke", "blanchedalmond" };
  public static String[] headingSize =
    { "20", "30", "40", "50", "60", "70", "80" };
  public static String[] headingFont =
    { "Impact", "Arial", "Times New Roman",
      "Brush Script MT", "Braggadocio" };
  public static String[] headingAlignment =
    { "left", "center", "right" };
  public static String[] indent =
    { "0.0", "0.25", "0.50", "0.75",
      "1.0", "1.25", "1.50", "1.75", "2.0" };
  public static String url =
    "http://www.sys.uea.ac.uk/jrwg/cgi-bin/CssTest";
  public static String  expires =
    "; expires=Friday, 31-Dec-2000 23:59:59 GMT";
}
