#!/usr/bin/perl

$YearPrev="2015";                # 2016 previous year
$Year="2016";                    # 2016
$Year_parity="even";             # 2016
$Year_dir="copper2016";          # 2016 dir stuff resides
$Dates="March 20 - March 25, 2016"; # 2016
$Date_start = "20 March";        # 2016
$Date_end = "25 March";          # 2016
$Topic="Iterative Methods";      # 2016 even="Iterative", odd="Multigrid"
#$Topic="Multigrid Methods";     # 2015 even="Iterative", odd="Multigrid"
$Acronym="CMCIM2016";            # 2016 even="CMCIM", odd="CMCCM"
$AcronymYear="CMCIM 2016";       # 2016 even="CMCIM", odd="CMCCM"
$OrderNum = "14th";              # 2016 Iterative
$OrderTxt = "FOURTEENTH";        # 2016 Iterative
#$OrderNum = "17th";              # 2015 Multigrid
#$OrderTxt = "SEVENTEENTH";       # 2015 Multigrid
$TheMan="Ray Tuminaro";	 # 2016 even="Manteuffel", odd="McCormick"
#$TheMan="Van Emden Henson";	 # 2015 even="Manteuffel", odd="McCormick"
$TalkLengthInclQA = "25";        # 2016 minutes for a talk incl 5 min Q&A

$DeadlineAbstr="January 22";     # 2016 "January 1";
$DeadlineEarlyReg="January 29";    # 2016 
$DeadlineRefund="February 20, 2016"; # 2016 XXX now used in confirm.cgi
$RefundFee="100";                # 2016 refund fee before deadline

#$BanquetDay = "Wednesday";                                  # 2015 
$BanquetDay = "Thursday";                                    # 2016
$GroupCode = "1196"; # G1196 "657"; #FRSC2015"; #"3GK40O";          # 2016
$DeadlineStudentPaper="January 23";                          # 2016
$DeadlineGuaranteedLodging="March 5, 2016";              # 2016
$DeadlineSpecIssue="April 1-June 30, 2016";                  # 2016
$DeadlineTravelSupport="February TBA, 2015";                  # 2016
$DeadlineReimburse="March TBA";                               # 2016 unu

$ConferenceCoordinator="Annette Anthony, Conference Coordinator"; # 2015
$ConferenceAddress1="Front Range Scientific Computations";        # 2015
$ConferenceAddress2="8865 E. Calle Buena Vista";                  # 2015
$ConferenceAddress3="Scottsdale, AZ 85255";                       # 2015
$ConferenceAddress4="USA";                                        # 2015

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

# Raised for 2015:
%FEE = (   "siam" => 425,         #2016
           "nonsiam" => 475,      #2016
           "student" => 175,      #2016
           "siam_late" => 475,    #2016
           "nonsiam_late" => 520, #2016
           "student_late" => 175  #2016
           );


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

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


###############################################################################
# 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 check for late submit.
###############################################################################
#Jan 29
use Time::Local;
#$deadline =timelocal(1,0,2,2,2,$Year-1900);	# 3:00:01am of 2  Mar thisyear
$deadline =timelocal(1,0,2,30,0,$Year-1900);	# 3:00:01am of 30 Jan thisyear
$startline=timelocal(1,0,0, 1,9,$Year-1901);	# beginning oct prevyear

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