#!/usr/bin/perl

$YearPrev="2012";                  # 2013 previous year
$Year="2013";                      # 2013
$Year_dir="copper2013";            # 2013 directory in /srv/www/cgi where stuff lives
$Dates="XX March - XX March, 2012";# 2012
$Date_start = "XX March";          # 2012
$Date_end = "XX March";            # 2012
$Topic="Multigrid Methods";	   # 2013 even="Iterative", odd="Multigrid"
#$Topic="Iterative Methods";	   # 2012 even="Iterative", odd="Multigrid"
$Acronym="CMCMM13";		   # 2013 even="CMCIM", odd="CMCCM"
$AcronymYear="CMCMM 2013";         # 2013 even="CMCIM", odd="CMCCM"
#$OrderNum = "12th";                # 2012 Iterative
#$OrderTxt = "TWELFTH";             # 2012 Iterative
$OrderNum = "16th";                # 2013 Multigrid
$OrderTxt = "SIXTEENTH";           # 2013 Multigrid
#$TheMan="Howard Elman";	   # 2012 even="Manteuffel", odd="McCormick"
$TheMan="Van Emden Henson";	   # 2013 even="Manteuffel", odd="McCormick"
$TalkLengthInclQA = "25";          # 2012 minutes for a talk incl 5 min Q&A

require "timelocal.pl";

$DeadlineAbstr="January XX";      # 2012
$DeadlineEarlyReg="February XX";  # 2012
$DeadlineRefund="March XX, 2012"; # 2012 XXX now used in confirm.cgi
$RefundFee="100";                 # 2012 refund fee before deadline


#-mb: added for 2011 and on: ------------------------------
$BanquetDay = "Wednesday";                                       # 2013 odd 
#$BanquetDay = "Thursday";                                         # 2012 even
$GroupCode = "XX";                                            # 2012
$DeadlineStudentPaper="January XX";                               # 2012
$DeadlineGuaranteedLodging="February XX, 2012";                   # 2012
$DeadlineSpecIssue="June XX, 2012";                               # 2012
$DeadlineTravelSupport="February XX, 2012";                       # 2012
$DeadlineReimburse="March XX";                                    # 2011 unused
$ConferenceCoordinator="Annette Anthony, Conference Coordinator"; # 2013
$ConferenceAddress1="Front Range Scientific Computations";        # 2013
$ConferenceAddress2="8865 E. Calle Buena Vista";                  # 2013
$ConferenceAddress3="Scottsdale, AZ 85255";                       # 2013
$ConferenceAddress4="USA";                                        # 2013


###############################################################################
# Deadline time for early registration (based on DeadlineEarlyReg):
# Use timelocal($sec0,$min0,$hour0,$mday1,$mon0,$year0);
# Note: all is based at 0 here, execpt for $mday, which starts with 1.
# later in confirm.cgi compare the result with time() to chake for late submit.
###############################################################################
#$deadline =timelocal(1,0,0,4,2,$Year-1900);	# start of  4 Mar thisyear 2010
$deadline =timelocal(1,0,2,24,1,$Year-1900);	# 2:00:01am of 24 Feb thisyear 2011
$startline=timelocal(1,0,0, 1,9,$Year-1901);	# beginning of 1 Oct prevyear
#  $time = timelocal($sec,$min,$hour,$mday1,$mon0,$year);

$eaddress="marian.brezina\@colorado.edu";	# for the real thing
$sendmail="/bin/mailx";

##########################################################################
$DefaultBodyBgCol1 = "#efddbb"; # 
$DefaultBodyBgCol2 = "#ccccbf"; # with light-gray
$DefaultLinkCol = "#000000";    # "333333"
$DefaultALinkCol = "#001000";   # "fdf87f"
$DefaultVLinkCol = "#001000";   # "#333333"
##########################################################################

%FEE = (   "siam" => 405,         #2012,
           "nonsiam" => 450,      #2012,
           "student" => 175,      #2012,
           "siam_late" => 450,    #2012,
           "nonsiam_late" => 490, #2012,
           "student_late" => 175  #2012
           );


%TYPE = (	"siam" => "SIAM or AWM Member (early)",
		"nonsiam" => "Non-SIAM and non-AWM Member (early)",
		"student" => "Student",		# same fee as "late"
		"siam_late" => "SIAM or AWM Member",
		"nonsiam_late" => "Non-SIAM and non-AWM Member",
		"student_late" => "Student"
		);

%PayMethod = (	"check" => "by check",
			"verisign" => "credit / VeriSign",
			"cardother" => "credit, via phone or mail"
			);
