#!/usr/bin/perl

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

require "timelocal.pl";

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


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


###############################################################################
# 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";
#$DefaultBodyBgCol1 = "#efdfb0";
#$DefaultBodyBgCol1 = "#efd0b0";
# $DefaultBodyBgCol1 = "#efd0a0";
$DefaultBodyBgCol1 = "#ffe0b0";
$DefaultBodyBgCol2 = "#ccccbf"; # with light-gray
$DefaultLinkCol = "#000000";    # "333333" - not used yet
$DefaultALinkCol = "#001000";   # "fdf87f" - not used yet
$DefaultVLinkCol = "#001000";   # "#333333" - not used yet
##########################################################################

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


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