var EmailTemplatesJS =
{


getGetSendMessage: function( key )
{
    return function( data )
    {
        var toReturn = EmailTemplatesJS[ key ];
        toReturn = toReturn.replace( ":parentname:" , data.parentname.split( " " )[ 0 ] );
        toReturn = toReturn.replace( ":childname:" , data.childnames );
        toReturn = toReturn.replace( ":day:" , data.day );
        toReturn = toReturn.replace( ":date:" , data.date );
        toReturn = toReturn.replace( ":time:" , data.time );
        return toReturn;
    }
} ,


CCQ5:
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">" +
 "<html>" +
 "<head>" +
 "<!-- COCONUT CREEK  -->" +
 "<title>IMACS Confirmation &amp; Map</title>" +
 "</head>" +
 "" +
 "<body>" +
 "<p>Dear :parentname:,</p>" +
 "" +
 "<p>:childname: is registered to attend the free Computer Programming &amp; Virtual Robotics Trial Class for " +
 "the IMACS Hi-Tech Summer Camp on :day:, :date:, at :time:, " +
 "located at IMACS Coconut Creek at 7600 Lyons Road (inside North Broward Preparatory School). Please note that we are in a different building during the summer.</p>" +
 "" +
 "<p><strong>Map and Directions</strong><br />" +
 "Click <a href=\"http://www.imacs.org/FileData/Maps/MapIMACSimacsdbCC.html\">here</a> " +
 "to find driving directions. To get to our summer location on campus, take the south entrance (with the traffic light) into North Broward Prep School. After the guard gate, take the second right at the IMACS sign. Make an immediate left to park in the wooded area. The IMACS lobby is in the building closest to the wooded area. " +
 "<strong>Please click <a href=\"http://admin.imacs.org/FileData/IMACSWeb/images/2010-IMACS-Coconut-Creek-Summer-Map.pdf\"> here</a> to view a map of the IMACS building and parking " +
 "lots on the North Broward Prep Campus.</strong></p>" +
 "" +
 "" +
 "<p>If you have any questions or if you need to cancel or rearrange your reservation, please call us at <strong>954.791.2333 or 561.470.1178</strong>, or email " +
 "us at parentrelations@imacs.org.</p>" +
 "" +
 "" +
 "<p>See you soon!<br />" +
 "<em>IMACS Parent Relations</em></p>" +
 "" +
 "</body>" +
 "</html>" +
 ""  , // end of string


PLQ5a:
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">" + 
 "<html>" + 
 "<head>" + 
 "<!-- PLANTATION -->" + 
 "<title>IMACS Confirmation</title>" + 
 "</head>" + 
 "" + 
 "<body>" + 
 "<p>Dear :parentname:,</p>" + 
 "" + 
 "<p>You and <!--childname--> are registered to attend the Open House for the IMACS Hi-Tech Summer Camp on :day:, :date:, from 10:00am to 12:00pm at IMACS Plantation (7435 NW 4th Street). The Open House will not take the entire 2 hours. Please feel free to arrive anytime between 10:00am and 10:45am.</p>" + 
 "" + 
 "<p>Click " + 
 "<a href=\"http://www.imacs.org/FileData/Maps/MapIMACSimacsdbPL.html\">here</a> " + 
 "to view a map of this location.</p>" + 
 "" + 
 "<p>If you have any questions or if you need to cancel or rearrange your reservation, please call us at <strong>954-791-2333</strong> or email us at parentrelations@imacs.org.</p>" + 
 "" + 
 "<p>See you soon!<br />" + 
 "<em>IMACS Parent Relations</em></p>" + 
 "" + 
 "</body>" + 
 "</html>" + 
 "" , // end of string

PLQ5:
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">" + 
 "<html>" + 
 "<head>" + 
 "<!-- Plantation  -->" + 
 "<title>IMACS Confirmation</title>" + 
 "</head>" + 
 "" + 
 "<body>" + 
 "<p>Dear :parentname:,</p>" + 
 "" + 
 "<p>:childname: is registered to attend the free Computer Programming &amp; Virtual Robotics Trial Class for the IMACS Hi-Tech Summer Camp on :day:, :date:, at :time:, at IMACS Plantation, located at 7435 NW 4th St.</p>" + 
 "" + 
 "<p>Click " + 
 "<a href=\"http://www.imacs.org/FileData/Maps/MapIMACSimacsdbPL.html\">here</a> " + 
 "to view a map of this location.</p>" + 
 "" + 
 "<p>If you have any questions or if you need to cancel or rearrange your reservation, please call us at <strong>954-791-2333</strong> or email us at parentrelations@imacs.org.</p>" + 
 "" + 
 "<p>See you soon!<br />" + 
 "<em>IMACS Parent Relations</em></p>" + 
 "" + 
 "</body>" + 
 "</html>" + 
 "" , // end of string


WSQ5:
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">" + 
 "<html>" + 
 "<head>" + 
 "<!-- WESTON  -->" + 
 "<title>IMACS Confirmation</title>" + 
 "</head>" + 
 "" + 
 "<body>" + 
 "<p>Dear :parentname:,</p>" + 
 "" + 
 "<p>:childname: is registered to attend the free Computer Programming &amp; Virtual Robotics Trial Class for the IMACS Hi-Tech Summer Camp on :day:, :date:, at :time:, at IMACS Weston, located at 2585 Glades Circle (inside the Sagemont Upper School).</p>" + 
 "" + 
 "<p>Click <a href=\"http://www.imacs.org/FileData/Maps/MapIMACSimacsdbWS.html\"> here</a> to view a map or to find driving directions. Once inside the school, follow the IMACS signs to the IMACS lobby on the second floor.</p>" + 
 "" + 
 "<p>If you have any questions or if you need to cancel or rearrange your reservation, please call us at <strong>954.791.2333</strong> or email us at parentrelations@imacs.org. <strong>If you need to contact us the day of the Trial Class, please call 954.389.2454 x334</strong>.</p>" + 
 "" + 
 "<p>See you soon!<br />" + 
 "<em>IMACS Parent Relations</em></p>" + 
 "" + 
 "</body>" + 
 "</html>" + 
 ""  // end of string





};