\InputIfFileExists{./issue.pre}{}{
   \InputIfFileExists{../issue.pre}{}{
      \InputIfFileExists{../../issue.pre}{}{
         \InputIfFileExists{../../../issue.pre}{}{
            \typeout{**Unable to find issue.pre, using old information!}
             \newcommand{\IssueDate}{September 2003}
             \newcommand{\WholeNumber}{128}
             \newcommand{\IssueVolume}{34}
             \newcommand{\IssueNumber}{3}
         }
      }
   }
}

\newcommand{\Issue}{\IssueDate\ Vol. \IssueVolume, No. \IssueNumber}

\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{SIGACTNews}

\RequirePackage{fullpage}
\RequirePackage{fancyhdr}

\linespread{1}    % single spacing

\font\footlinefont=cmr10 at 10pt 

\newcommand{\FooterSize}{\footlinefont}
\DeclareOption{10pt}{
  \typeout{Document Style `SIGACTNews' using 10 point}
}
\DeclareOption{11pt}{
  \typeout{Document Style `SIGACTNews' using 11 point}
}
\DeclareOption{12pt}{
  \typeout{Document Style `SIGACTNews' using 12 point}
}
\ProcessOptions

% \usepackage{fullpage, fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
\lfoot{\FooterSize\it ACM SIGACT News}
\cfoot{\FooterSize\thepage}
\rfoot{\FooterSize \Issue}
\newcommand{\SIGACTmaketitle}{\maketitle\thispagestyle{fancy}}


\newcommand{\SIGACTpage}[1]{\setcounter{page}{#1}}
\newcommand{\SIGACTPage}[1]{\setcounter{Page}{#1}}
\IfFileExists{\jobname.pre}{\input \jobname.pre}{\SIGACTpage{1}}

