#!/usr/bin/perl

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

$DeadlineAbstr="January 18";      # 2015 "January 1";
$DeadlineEarlyReg="March 2";      # 2015 
$DeadlineRefund="March 15, 2014"; # 2014 XXX now used in confirm.cgi
$RefundFee="100";                # 2014 refund fee before deadline

$BanquetDay = "Wednesday";                                    # 2015 
$GroupCode = "657"; #FRSC2015"; #"3GK40O";                           # 2015
$DeadlineStudentPaper="January 2";                            # 2015
$DeadlineGuaranteedLodging="February 21, 2015";               # 2015
$DeadlineSpecIssue="May 15, 2015";                            # 2015
$DeadlineTravelSupport="February TBA, 2015";                  # 2015
$DeadlineReimburse="March TBA";                               # 2015 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,         #2015
           "nonsiam" => 475,      #2015
           "student" => 175,      #2015
           "siam_late" => 475,    #2015
           "nonsiam_late" => 520, #2015
           "student_late" => 175  #2015
           );


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


###############################################################################
# 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.
###############################################################################
use Time::Local;
$deadline =timelocal(1,0,2,2,2,$Year-1900);	# 3:00:01am of 2 Mar 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";
