#!/usr/bin/perl

$YearPrev="2012";                # 2013 previous year
$Year="2013";                    # 2013
$Year_parity="odd";              # 2013
#$Year_parity="even";            # 2012
$Year_dir="copper2013";          # 2013 directory in /srv/www/cgi-bin where stuff resides
$Dates="17 March - 22 March, 2013"; # 2013
$Date_start = "17 March";        # 2012
$Date_end = "22 March";          # 2012
#$Topic="Iterative Methods";     # 2012 even="Iterative", odd="Multigrid"
$Topic="Multigrid Methods";      # 2013 even="Iterative", odd="Multigrid"
$Acronym="CMCMM2013";            # 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 10";      # 2013 "January 1";
$DeadlineEarlyReg="March 1";      # 2013 "February 15";  # 2013
$DeadlineRefund="February 15, 2013"; # 2013 XXX now used in confirm.cgi
$RefundFee="100";                 # 2013 refund fee before deadline

$BanquetDay = "Wednesday";                                       # 2013 odd 
#$BanquetDay = "Thursday";                                       # 2012 even
$GroupCode = "237";                                              # 2013
$DeadlineStudentPaper="January 1";                                # 2013
$DeadlineGuaranteedLodging="February 13, 2013";                   # 2013
$DeadlineSpecIssue="June XX, 2013";                               # 2012
$DeadlineTravelSupport="February 1, 2013";                        # 2013
$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,16,1,$Year-1900);	# 2:00:01am of 16 Feb thisyear 2013
$deadline =timelocal(1,0,2,1,2,$Year-1900);	# 2:00:01am of 2 Mar thisyear 2013
$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,2013
           "nonsiam" => 450,      #2012,2013
           "student" => 175,      #2012,2013
           "siam_late" => 450,    #2012,2013
           "nonsiam_late" => 490, #2012,2013
           "student_late" => 175  #2012,2013
           );


%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"
			);
