
var EventNameText = "MFRI Burn Building Design &amp; Construction Symposium";
var EventYearText = "2010";
var BrochurePDFName = EventYearText + "bbcsbrochure.pdf";
var RegistrationFormPDFName = EventYearText + "bbcsregform.pdf";
var BrochureSmallCoverName = EventYearText + "bbcscover_s.gif";
var BrochureLargeCoverName = EventYearText + "bbcscover_b.gif";
var RegistrationFormSmallCoverName = EventYearText + "bbcsregform_s.gif";
var RegistrationFormLargeCoverName = EventYearText + "bbcsregform_b.gif";
var RegistrationFormSmallCoverWidth = 100;
var RegistrationFormLargeCoverWidth = 400;

var PageTitle = EventNameText;
var PageHeading = EventNameText;
var PageHeadingSize = "200%";
var PageEmailLink = "khaje@mfri.org";
var PageEmailName = "Karen Haje";
var PageEmailDescription = "with Questions About " + EventNameText;


var MenuLinks = [
"Canceled|Click to View Symposium Overview|bbdcs.html||"
];

/*"Sponsors|Click to View Sponsors|bbdcssp.html||",*/

/*"Menu Item Label|Alt Text|href|target|Parentfile"*/

var RegistrationDateText = " April 9, " + EventYearText;
var EventDateText = "May 11 &amp; 12, " + EventYearText;
var EventStartDateText = "May 11";
var EventEndDateText = "May 12";
var HotelName = "Four Points by Sheraton BWI Airport";
var HotelAddress1 = "7032 Elm Road" + '<br>';
var HotelAddress2 = ""// + '<br>';;
var HotelCity = "Baltimore";
var HotelStateLong = "Maryland";
var HotelStateShort = "MD";
var HotelZipCode = "21240";
var HotelPhone1 = "1-410-859-3300";
var HotelPhone2 = "1-800-638-5858";

var EventAirportText = "Baltimore-Washington international Airport (BWI)";

var HotelCheckInDateText = "May 10";
var HotelCheckOutDateText = "May 12";

var HotelFeeText = "$115.00 per night";

var EventFeeText = "$450.00";

function RegistrationFormLink()
{
  return '<a href="' + RegistrationFormPDFName + '" title="Click to view ' + EventYearText + ' ' + EventNameText + ' registration form (PDF)" target="_blank">Registration Form (PDF)</a>';
}

function RegistrationCoverImg(DisplaySize, Link)
{
  var ImgTag = '<img src="' + RegistrationCover(DisplaySize) + '" border=0 width=' + BrochureCoverWidth(DisplaySize) + '" title="' + EventYearText + ' ' + EventNameText + '">';	

  if (Link == "WithLink")
  {
	 return '<a href="' + RegistrationFormPDFName + '" title="Click to view ' + EventYearText + ' ' + EventNameText + ' Registration form (PDF)" target="_blank">' + ImgTag + '</a>';
  }

  return ImgTag;
}

function RegistrationCover(DisplaySize)
{
  if (DisplaySize == "Small")
  {
	return RegistrationFormSmallCoverName; 
  }

  if (DisplaySize == "Large")
  {
	return RegistrationFormLargeCoverName; 
  }

  return ""; 
}


function BrochureCoverImg(DisplaySize, Link)
{
  var ImgTag = '<img src="' + BrochureCover(DisplaySize) + '" border=0 width=' + BrochureCoverWidth(DisplaySize) + '" title="' + EventYearText + ' ' + EventNameText + '">';	

  if (Link == "WithLink")
  {
	 return '<a href="' + BrochurePDFName + '" title="Click to view ' + EventYearText + ' ' + EventNameText + ' Brochure (PDF)" target="_blank">' + ImgTag + '</a>';
  }

  return ImgTag;
}

function BrochureCover(DisplaySize)
{
  if (DisplaySize == "Small")
  {
	return BrochureSmallCoverName; 
  }

  if (DisplaySize == "Large")
  {
	return BrochureLargeCoverName; 
  }

  return ""; 
}

function BrochureCoverWidth(DisplaySize)
{
  if (DisplaySize == "Small")
  {
	return RegistrationFormSmallCoverWidth; 
  }

  if (DisplaySize == "Large")
  {
	return RegistrationFormLargeCoverWidth; 
  }

  return 0; 
}



function EventName()
{
  return EventNameText; 
}

function HotelFee()
{
  return HotelFeeText; 
}

function EventFee()
{
  return EventFeeText; 
}

//display type: Bold, Year, CheckIn, CheckOut, Start, End, YearBold
function EventDate(DisplayType)
{
  if (DisplayType == "Bold")
  {
	return '<b>' + EventDateText + '</b>'; 
  }

  if (DisplayType == "Year")
  {
	return EventYearText; 
  }

  if (DisplayType == "YearBold")
  {
	return '<b>' + EventYearText + '</b>';  
  }

  if (DisplayType == "CheckIn")
  {
	return '<b>' + HotelCheckInDateText + '</b>'; 
  }

  if (DisplayType == "CheckOut")
  {
	return '<b>' + HotelCheckOutDateText + '</b>'; 
  }

  if (DisplayType == "Start")
  {
	return '<b>' + EventStartDateText + '</b>'; 
  }

  if (DisplayType == "End")
  {
	return '<b>' + EventEndDateText + '</b>'; 
  }

  return EventDateText; 

}

function RegistrationDate()
{
  return '<b>' + RegistrationDateText + '</b>'; 
}

//display type: Footer, Detail, Name, Casual, Airport
function HotelAddress(DisplayType)
{
	
   var TextDisplay = "";

  if (DisplayType == "Footer")
  {
    TextDisplay = '<h2>' + EventDateText + '<br>' + HotelName + '<br>' + HotelAddress1 + HotelAddress2 + HotelCity + ', ' + HotelStateShort + ' ' + HotelZipCode + '</h2>';

	return TextDisplay; 
  }

  if (DisplayType == "Detail")
  {
    TextDisplay = '<p style="font-family: "Trebuchet MS, Verdana, sans-serif"; font-size:100%;">' + HotelName + '<br>' + HotelAddress1 + HotelAddress2 + HotelCity + ', ' + HotelStateShort + ' ' + HotelZipCode + '</p>';

	return TextDisplay; 
  }

  if (DisplayType == "Name")
  {
    TextDisplay = HotelName;

	return TextDisplay; 
  }

  if (DisplayType == "Casual")
  {
    TextDisplay = HotelName + ' in ' + HotelCity + ', ' + HotelStateLong + '.';

	return TextDisplay; 
  }

  if (DisplayType == "Airport")
  {
    TextDisplay = EventAirportText;

	return TextDisplay; 
  }

  if (DisplayType == "ReservationNumber")
  {
   
    if (HotelPhone2.length > 0)
    {
	   TextDisplay = HotelPhone1 + " or " + HotelPhone2;
    }
    else
    {
	   TextDisplay = HotelPhone1;
    }

	return TextDisplay; 
  }

  return HotelName;
}

var ListHeading = "";
var ListItems = [
"<h1>Topics will include:</h1>||||<br clear=all>||bbdcsto.html",
"<h2>Training and Safety Requirements of Burn Buildings</h2>||||||bbdcsto.html",
"The importance of designing a building to meet the user's needs will be stressed.  Various design issues, props, and more will be addressed.  The speaker will also discuss the impact of certain NFPA standards and OSHA regulations on the design of burn buildings.||||<br clear=all>||bbdcsto.html",
"<h2>Site Selection Considerations</h2>||||||bbdcsto.html",
"The speaker will discuss regulations and other issues relating to the site itself, such as zoning, environmental impacts, easements and other site specific issues.||||<br clear=all>||bbdcsto.html",
"<h2>Architectural Considerations</h2>||||||bbdcsto.html",
"The speaker will define the architect and client relationship, discuss the level of participation required by client and what the client can expect in return.||||<br clear=all>||bbdcsto.html",
"<h2>Facility Management</h2>||||||bbdcsto.html",
"The speaker will discuss the long-term impact of proper design and proper operation of the burn building in order to extend its useful life.||||<br clear=all>||bbdcsto.html",
"<h2>Lessons Learned</h2>||||||bbdcsto.html",
"The speakers will discuss their own experiences in funding, building, and operating their training facilities.  They will emphasize the areas that have worked well and what they would do differently.||||<br clear=all>||bbdcsto.html",
"<h2>Codes, Standards, and some Potential Impacts</h2>||||||bbdcsto.html",
"The speaker will discuss NFPA standards, building codes, and OSHA regulations, which may be applicable.  They will also examine how these issues potentially impact the design of the facility.||||<br clear=all>||bbdcsto.html",
"<h2>Round Table Discussion With Speakers</h2>||||||bbdcsto.html"
];

 

 

 

 

 







