/*jslint nomen:false, debug:true, evil:true, vars:false, browser:true, forin:true, undef:false, white:false */
/**
 * Includes a Form with javascript
 * @param {Object} formId
 * @param {Object} initialHeight
 * @param {Object} iframeCode
 */
function FrameBuilder (formId, appendTo, initialHeight, iframeCode){
    this.formId = formId;
    this.initialHeight = initialHeight;
    this.iframeCode = iframeCode;
    this.frame = null;
    this.timeInterval= 200;
    this.appendTo = appendTo || false;
    
    // initialize function for object
    this.init = function(){
        this.createFrame();
        this.addFrameContent(this.iframeCode);
    };
    
    // Create the frame
    this.createFrame = function(){
        var htmlCode = "<"+"iframe src=\"\" allowtransparency=\"true\" frameborder=\"0\" name=\""+this.formId+"\" id=\""+this.formId+"\" style=\"width:100%; height:"+this.initialHeight+"px; border:none;\" scrolling=\"no\"></if"+"rame>";
        if(this.appendTo === false){
            document.write(htmlCode);
        }else{
            var tmp = document.createElement('div');
            tmp.innerHTML = htmlCode;
            var a = this.appendTo;
            document.getElementById(a).appendChild(tmp.firstChild);            
        }
        // also get the frame for future use.
        this.frame = document.getElementById(this.formId);
        // set the time on the on load event of the frame
        this.addEvent(this.frame, 'load', this.bindMethod(this.setTimer, this));
    };
    
    // add event function for different browsers
    this.addEvent = function( obj, type, fn ) {
        if ( obj.attachEvent ) {
            obj["e"+type+fn] = fn;
            obj[type+fn] = function() { obj["e"+type+fn]( window.event ); };
            obj.attachEvent( "on"+type, obj[type+fn] );
        }
        else{
            obj.addEventListener( type, fn, false );   
        }
    };
    
    this.addFrameContent = function (string){
        string = string.replace(new RegExp('src\\=\\"[^"]*captcha.php\"><\/scr'+'ipt>', 'gim'), 'src="http://api.recaptcha.net/js/recaptcha_ajax.js"></scr'+'ipt><'+'div id="recaptcha_div"><'+'/div>'+
                '<'+'style>#recaptcha_logo{ display:none;} #recaptcha_tagline{display:none;} #recaptcha_table{border:none !important;} .recaptchatable .recaptcha_image_cell, #recaptcha_table{ background-color:transparent !important; } <'+'/style>'+
                '<'+'script defer="defer"> window.onload = function(){ Recaptcha.create("6Ld9UAgAAAAAAMon8zjt30tEZiGQZ4IIuWXLt1ky", "recaptcha_div", {theme: "clean",tabindex: 0,callback: function (){'+
                'if (document.getElementById("uword")) { document.getElementById("uword").parentNode.removeChild(document.getElementById("uword")); } if (window["validate"] !== undefined) { if (document.getElementById("recaptcha_response_field")){ document.getElementById("recaptcha_response_field").onblur = function(){ validate(document.getElementById("recaptcha_response_field"), "Required"); } } } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_challenge_field")[0].setAttribute("name", "anum"); } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_response_field")[0].setAttribute("name", "qCap"); }}})'+
                ' }<'+'/script>');
        string = string.replace(/(type="text\/javascript">)\s+(validate\(\"[^"]*"\);)/, '$1 jTime = setInterval(function(){if("validate" in window){$2clearTimeout(jTime);}}, 1000);');
        var frameDocument = (this.frame.contentWindow) ? this.frame.contentWindow : (this.frame.contentDocument.document) ? this.frame.contentDocument.document : this.frame.contentDocument;
        frameDocument.document.open();
        frameDocument.document.write(string);
        setTimeout( function(){
            frameDocument.document.close();
            try{
                if('JotFormFrameLoaded' in window){
                    JotFormFrameLoaded();
                }
            }catch(e){}
        },200);
    };
    
    this.setTimer = function(){
        var self = this;
        this.interval = setTimeout(function(){self.changeHeight();},this.timeInterval);
    };
    
    this.changeHeight = function (){
        var actualHeight = this.getBodyHeight();
        var currentHeight = this.getViewPortHeight();
        if(actualHeight === undefined){
            this.frame.style.height = "100%";
            if(!this.frame.style.minHeight){
                this.frame.style.minHeight = "300px";
            }
        }else if  (Math.abs(actualHeight - currentHeight) > 18){
            this.frame.style.height = (actualHeight)+"px";
        }
        this.setTimer();
    };
    
    this.bindMethod = function(method, scope) {
        return function() {
            method.apply(scope,arguments);
        };
    };
    
    this.getBodyHeight = function (){
        var height;
        var scrollHeight;
        var offsetHeight;
        try{  // Prevent IE from throw errors
            if (this.frame.contentWindow.document.height){
                
                height = this.frame.contentWindow.document.height;
                //Emre: to prevent "iframe height"  problem (61059)
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
            } else if (this.frame.contentWindow.document.body){
                
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
                if (scrollHeight && offsetHeight){
                    height = Math.max(scrollHeight, offsetHeight);
                }
            }            
        }catch(e){ }
        return height;
    };
    
    this.getViewPortHeight = function(){
        var height = 0;
        try{ // Prevent IE from throw errors
            if (this.frame.contentWindow.window.innerHeight)
            {
                height = this.frame.contentWindow.window.innerHeight - 18;
            }
            else if ((this.frame.contentWindow.document.documentElement) &&
                     (this.frame.contentWindow.document.documentElement.clientHeight))
            {
                height = this.frame.contentWindow.document.documentElement.clientHeight;
            }
            else if ((this.frame.contentWindow.document.body) &&
                     (this.frame.contentWindow.document.body.clientHeight))
            {
                height = this.frame.contentWindow.document.body.clientHeight;
            }            
        }catch(e){ }
        return height;
    };
    
    this.init();
}
FrameBuilder.get = [];
var i1210445216 = new FrameBuilder("1210445216", false, "", "<!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01\/\/EN\" \"http:\/\/www.w3.org\/TR\/html4\/strict.dtd\">\n<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0\" \/>\n<meta name=\"HandheldFriendly\" content=\"true\" \/>\n<title>Form<\/title>\n<link href=\"http:\/\/max.jotfor.ms\/min\/g=formCss?3.0.2422\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<style type=\"text\/css\">\n    .form-label{\n        width:150px !important;\n    }\n    .form-label-left{\n        width:150px !important;\n    }\n    .form-line{\n        padding:5px;\n    }\n    .form-label-right{\n        width:150px !important;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:white;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:20px;\n        width:690px;\n        background:white;\n        color:black !important;\n        font-family:Verdana;\n        font-size:12px;\n    }\n<\/style>\n\n<script src=\"http:\/\/max.jotfor.ms\/min\/g=jotform?3.0.2422\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n var jsTime = setInterval(function(){try{\n   JotForm.jsForm = true;\n\n   JotForm.init();\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"http:\/\/submit.jotform.com\/submit.php\" method=\"post\" name=\"form_1210445216\" id=\"1210445216\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"1210445216\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li class=\"form-line\" id=\"id_20\">\n        <label class=\"form-label-left\" id=\"label_20\" for=\"input_20\">\n          Full Name<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_20\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox validate[required]\" type=\"text\" size=\"10\" name=\"q20_fullName[first]\" id=\"first_20\" \/>\n            <label class=\"form-sub-label\" for=\"first_20\" id=\"sublabel_first\"> First Name <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox validate[required]\" type=\"text\" size=\"15\" name=\"q20_fullName[last]\" id=\"last_20\" \/>\n            <label class=\"form-sub-label\" for=\"last_20\" id=\"sublabel_last\"> Last Name <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_3\">\n        <label class=\"form-label-left\" id=\"label_3\" for=\"input_3\"> E-mail: <\/label>\n        <div id=\"cid_3\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[Email]\" id=\"input_3\" name=\"q3_email\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_19\">\n        <label class=\"form-label-left\" id=\"label_19\" for=\"input_19\"> Phone Number: <\/label>\n        <div id=\"cid_19\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[Numeric]\" id=\"input_19\" name=\"q19_phoneNumber\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li id=\"cid_25\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_25\" class=\"form-header\">\n            Click to drop down options for more information\n          <\/h2>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_22\">\n      <li id=\"cid_22\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_22\"><span class=\"form-collapse-mid\" id=\"collapse-text_22\">Brookside Retirement Residence Visits<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_72\">\n        <label class=\"form-label-left\" id=\"label_72\" for=\"input_72\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_72\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_72_0\" name=\"q72_iAm72[]\" value=\"Brookside Retirement Residence Visits\" \/>\n              <label for=\"input_72_0\"> Brookside Retirement Residence Visits <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_23\">\n        <div id=\"cid_23\" class=\"form-input-wide\">\n          <div id=\"text_23\" class=\"form-html\">\n            <p class=\"MsoBodyText\">\n              <font size=\"2\">\n                To visit seniors living in the retirement home, to provide companionship, senior\u2019s activities including:&nbsp; Board Games, puzzles, bingo or just reading to them.\n              <\/font>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <font size=\"2\">\n                <b>\n                  <i>\n                    <u>\n                      Location:\n                    <\/u>\n                  <\/i>\n                <\/b>\n                980 Elgin Mills Road East Richmond Hill\n              <\/font>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <font size=\"2\">\n                <b>\n                  <i>\n                    <u>\n                      Frequency:&nbsp;\n                    <\/u>\n                  <\/i>\n                <\/b>\n                a couple of hours of your time any day of the week, open 7 days a week\n                <b>\n                  <i>\n                    <u>\n                    <\/u>\n                  <\/i>\n                <\/b>\n              <\/font>\n            <\/p>\n            <p class=\"MsoNormal\">\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Volunteers Contribution:\n                  <\/u>\n                <\/i>\n              <\/b>\n              Time to serve and participate (40 hours minimum\n              <u>\n                total\n              <\/u>\n              contribution)\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Dedicated Time\n                  <\/u>\n                <\/i>\n              <\/b>\n              : will be established in coordination with the activities supervisor\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <u>\n                  Training:\n                <\/u>\n              <\/strong>\n              <strong>\n                &nbsp; Will be provided when&nbsp;there are enough&nbsp;new volunteers.\n              <\/strong>\n              <b>\n                <i>\n                  <u>\n                  <\/u>\n                <\/i>\n              <\/b>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <font size=\"2\">\n                <b>\n                  <i>\n                    <u>\n                      Contact&nbsp; Servant:\n                    <\/u>\n                  <\/i>\n                <\/b>\n              <\/font>\n              <font size=\"2\">\n                &nbsp;&nbsp;\n              <\/font>\n              Debbie White and Pierre Girgis\n              <a href=\"mailto:brookside@smsv.ca\">brookside@smsv.ca<\/a>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_24\">\n      <li id=\"cid_24\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_24\"><span class=\"form-collapse-mid\" id=\"collapse-text_24\">Community Meals at Yonge Street Mission<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_73\">\n        <label class=\"form-label-left\" id=\"label_73\" for=\"input_73\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_73\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_73_0\" name=\"q73_iAm73[]\" value=\"Community Meals at Yonge Street Mission\" \/>\n              <label for=\"input_73_0\"> Community Meals at Yonge Street Mission <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_28\">\n        <div id=\"cid_28\" class=\"form-input-wide\">\n          <div id=\"text_28\" class=\"form-html\">\n            <p class=\"MsoBodyText\">\n              To serve community dinners at the YSM, including set-up and cleaning the hall after dinner. To participate in fellowship and youth sport\/games after dinner (Optional).\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Location:<\/span>\n                <\/em>\n              <\/strong>\n              Parliament Street & Gerrard Street East\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Frequency<\/span>\n                <\/em>\n              <\/strong>\n              :&nbsp; on the average twice a month\n              <strong>\n                <em>\n                <\/em>\n              <\/strong>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Volunteers Contribution:<\/span>\n                <\/em>\n              <\/strong>\n              Time to serve and participate\n              <strong>\n                <em><span style=\"text-decoration: underline;\"><\/span>\n                <\/em>\n              <\/strong>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Dedicated Time<\/span>\n                <\/em>\n              <\/strong>\n              ; Evenings 4:30 &ndash; 9:00 pm for dinner or 9 to 11:30 a.m for breakfast\n              <strong>\n                <em>\n                <\/em>\n              <\/strong>\n            <\/p>\n            <p><span style=\"font-size: x-small;\"><strong>\n                  <em><span style=\"text-decoration: underline;\">Contact&nbsp; Servant:<\/span>\n                  <\/em>\n                <\/strong><\/span><span style=\"font-size: x-small;\">Maurice Cyril\n                <a href=\"mailto:ysmservices@smsv.ca\">ysmservices@smsv.ca<\/a>\n                <br \/><\/span>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_29\">\n      <li id=\"cid_29\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_29\"><span class=\"form-collapse-mid\" id=\"collapse-text_29\">Downtown Sandwich Run Ministry<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_74\">\n        <label class=\"form-label-left\" id=\"label_74\" for=\"input_74\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_74\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_74_0\" name=\"q74_iAm74[]\" value=\"Downtown Sandwich Run Ministry\" \/>\n              <label for=\"input_74_0\"> Downtown Sandwich Run Ministry <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_31\">\n        <div id=\"cid_31\" class=\"form-input-wide\">\n          <div id=\"text_31\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              <a name=\"OLE_LINK9\"><b><i><u>Location: <\/u><\/i><\/b><\/a>\n              Nathan Philips Square, 100 Queen St. W. (In the Summer) TBA (In The Winter)\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Frequency:\n                  <\/u>\n                <\/i>\n              <\/b>\n              Weekly, Every Friday\n            <\/p>\n            <p class=\"MsoNormal\">\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Volunteers Contribution:\n                  <\/u>\n                <\/i>\n              <\/b>\n              We serve our friends in the streets of downtown Toronto.&nbsp; We are responsible for handing out sandwiches, water, juice and clothing as needed.&nbsp; The invitation is to witness to the God's glory with the needy, if someone wants to make sandwiches that is great but is not a must.&nbsp; We do send weekly emails to remind everyone&nbsp;of the run.\n              <b>\n                <i>\n                  <u>\n                  <\/u>\n                <\/i>\n              <\/b>\n            <\/p>\n            <b>\n              <i>\n                <u>\n                  Dedicated Time\n                <\/u>\n              <\/i>\n            <\/b>\n            : Fridays 6:30 - 9:30 pm\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Contact&nbsp; Servant:\n                  <\/u>\n                <\/i>\n              <\/b>\n              Fran Brown\n              <a href=\"mailto:sandwichrun@smsv.ca\">sandwichrun@smsv.ca<\/a>\n              <b>\n                <br>\n              <\/b>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_32\">\n      <li id=\"cid_32\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_32\"><span class=\"form-collapse-mid\" id=\"collapse-text_32\">Good Shepherd\u2019s Trays Preparation<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_75\">\n        <label class=\"form-label-left\" id=\"label_75\" for=\"input_75\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_75\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_75_0\" name=\"q75_iAm75[]\" value=\"Good Shepherd\u2019s Trays Preparation\" \/>\n              <label for=\"input_75_0\"> Good Shepherd\u2019s Trays Preparation <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_34\">\n        <div id=\"cid_34\" class=\"form-input-wide\">\n          <div id=\"text_34\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              To prepare pasta casseroles (a very simple recipe is provided, as well as, the specific containers).&nbsp; Prepare at your own time and bring frozen casserole to church on collection day\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Location:\n                  <\/u>\n                <\/i>\n              <\/b>\n              Pick up and delivery at SMSV church\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Frequency:\n                  <\/u>\n                <\/i>\n              <\/b>\n              <i>\n                Every 3 month\n              <\/i>\n              <i>\n              <\/i>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Volunteers Contribution:\n                  <\/u>\n                <\/i>\n              <\/b>\n              Donate and cook the content of the casseroles\n              <b>\n                <i>\n                  <u>\n                  <\/u>\n                <\/i>\n              <\/b>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Dedicated Time\n                  <\/u>\n                <\/i>\n              <\/b>\n              : the time to prepare the casseroles\n              <b>\n                <i>\n                  <u>\n                  <\/u>\n                <\/i>\n              <\/b>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Contact&nbsp; Servant:&nbsp;\n                  <\/u>\n                <\/i>\n              <\/b>\n              Engy Azouz\n              <a href=\"mailto:goodshepherd@smsv.ca\">goodshepherd@smsv.ca<\/a>\n              <br>\n            <\/p>\n            &nbsp;\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_35\">\n      <li id=\"cid_35\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_35\"><span class=\"form-collapse-mid\" id=\"collapse-text_35\">Habitat for Humanity<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_76\">\n        <label class=\"form-label-left\" id=\"label_76\" for=\"input_76\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_76\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_76_0\" name=\"q76_iAm76[]\" value=\"Habitat for Humanity\" \/>\n              <label for=\"input_76_0\"> Habitat for Humanity <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_37\">\n        <div id=\"cid_37\" class=\"form-input-wide\">\n          <div id=\"text_37\" class=\"form-html\">\n            <p class=\"MsoBodyText\">\n              To participate in building homes for low-income families, putting together walls, dry walls, paint or finishing floors under the supervision of a construction crew.\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Location:<\/span>\n                <\/em>\n              <\/strong>\n              varies depending on building sites\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Frequency:<\/span>\n                <\/em>\n              <\/strong>\n              6-8 times per year\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Volunteers Contribution:<\/span>\n                <\/em>\n              <\/strong>\n              time and skills, hard work but lots of fun\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Dedicated Time<\/span>\n                <\/em>\n              <\/strong>\n              : a full day (8 hours)\n              <\/em>\n              <\/strong>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Contact&nbsp; Servant:<\/span>\n                <\/em>\n              <\/strong>\n              &nbsp;<span style=\"font-size: x-small;\">Maurice Cyril\n                <a href=\"mailto:habitat@smsv.ca\">habitat@smsv.ca<\/a><\/span>\n            <\/p>\n            &nbsp;\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_38\">\n      <li id=\"cid_38\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_38\"><span class=\"form-collapse-mid\" id=\"collapse-text_38\">Outreach to the Sick<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_77\">\n        <label class=\"form-label-left\" id=\"label_77\" for=\"input_77\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_77\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_77_0\" name=\"q77_iAm77[]\" value=\"Outreach to the Sick\" \/>\n              <label for=\"input_77_0\"> Outreach to the Sick <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_40\">\n        <div id=\"cid_40\" class=\"form-input-wide\">\n          <div id=\"text_40\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              To visit sick individuals at their homes or the hospital, assess their needs and develop a schedule \/plan for their visitation. (short term or long term)\n            <\/p>\n            <p class=\"MsoNormal\">\n              Details for this service is being identified, anyone can participate in defining its mission.\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Contact&nbsp; Servant:\n                  <\/u>\n                <\/i>\n              <\/b>\n              &nbsp; Dr. Laila Bishara\n              <a href=\"mailto:outreach@smsv.ca\">outreach@smsv.ca<\/a>\n              <br>\n            <\/p>\n            &nbsp;\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_41\">\n      <li id=\"cid_41\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_41\"><span class=\"form-collapse-mid\" id=\"collapse-text_41\">Seniors 4 Seniors<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_78\">\n        <label class=\"form-label-left\" id=\"label_78\" for=\"input_78\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_78\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_78_0\" name=\"q78_iAm78[]\" value=\"Seniors 4 Seniors\" \/>\n              <label for=\"input_78_0\"> Seniors 4 Seniors <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_44\">\n        <div id=\"cid_44\" class=\"form-input-wide\">\n          <div id=\"text_44\" class=\"form-html\">\n            Adult members of the church community willing to donate their time to call or visit and spend time with an isolated senior. Assess their need and if required engaged other services to support the specific case. &nbsp; &nbsp; &nbsp;\n            <b>\n              <i>\n                Contact&nbsp; Servant:\n              <\/i>\n            <\/b>\n            <i>\n            <\/i>\n            <i>\n              Dahlia Younan\n            <\/i>\n            &nbsp;\n            <b>\n              <i>\n                <u>\n                <\/u>\n              <\/i>\n            <\/b>\n            <a href=\"mailto:seniors4seniors@smsv.ca\">seniors4seniors@smsv.ca<\/a>\n            <br>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_45\">\n      <li id=\"cid_45\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_45\"><span class=\"form-collapse-mid\" id=\"collapse-text_45\">Holiday Food Drives<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_79\">\n        <label class=\"form-label-left\" id=\"label_79\" for=\"input_79\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_79\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_79_0\" name=\"q79_iAm79[]\" value=\"Holiday Food Drives\" \/>\n              <label for=\"input_79_0\"> Holiday Food Drives <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_47\">\n        <div id=\"cid_47\" class=\"form-input-wide\">\n          <div id=\"text_47\" class=\"form-html\">\n            Food Drives &nbsp;Before Easter, Thanksgiving and Christmas SMSV organizes food drives for the benefits of different community services organizations&nbsp;\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Volunteers Contribution\n                  <\/u>\n                <\/i>\n              <\/b>\n              : donation of canned and non-perishable food items\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Leading Servants:\n                  <\/u>\n                <\/i>\n              <\/b>\n              Renee Samuel\n              <a href=\"mailto:fooddrives@smsv.ca\">fooddrives@smsv.ca<\/a>\n              <br>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_48\">\n      <li id=\"cid_48\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_48\"><span class=\"form-collapse-mid\" id=\"collapse-text_48\">Operation Christmas Child<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_80\">\n        <label class=\"form-label-left\" id=\"label_80\" for=\"input_80\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_80\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_80_0\" name=\"q80_iAm80[]\" value=\"Operation Christmas Child\" \/>\n              <label for=\"input_80_0\"> Operation Christmas Child <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_50\">\n        <div id=\"cid_50\" class=\"form-input-wide\">\n          <div id=\"text_50\" class=\"form-html\">\n            <p class=\"MsoBodyText\">\n              Before Christmas, shoeboxes are provided for volunteers to fill them with small non-perishable food items or small gifts and donate the shipping cost. These boxes are shipped all over the world to needy children to help them celebrate Christmas.\n            <\/p>\n            <p class=\"MsoBodyText\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Leading Servants:<\/span>\n                <\/em>\n              <\/strong>\n              Renee Samuel, Maurice Cyril&nbsp;\n              <a href=\"mailto:christmaschild@smsv.ca\">christmaschild@smsv.ca<\/a>\n            <\/p>\n            &nbsp;\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_54\">\n      <li id=\"cid_54\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_54\"><span class=\"form-collapse-mid\" id=\"collapse-text_54\">West Hill \u201cHolidays Baskets\u201d for Families<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_81\">\n        <label class=\"form-label-left\" id=\"label_81\" for=\"input_81\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_81\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_81_0\" name=\"q81_iAm81[]\" value=\"West Hill \u201cHolidays Baskets\u201d for Families\" \/>\n              <label for=\"input_81_0\"> West Hill \u201cHolidays Baskets\u201d for Families <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_53\">\n        <div id=\"cid_53\" class=\"form-input-wide\">\n          <div id=\"text_53\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              From a list of the content, gather and put together family baskets full of Christmas goods supplied from West Hill food warehouse.\n              <b>\n                <i>\n                  <u>\n                  <\/u>\n                <\/i>\n              <\/b>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Location:\n                  <\/u>\n                <\/i>\n              <\/b>\n              Lawrence Av. E. & Galloway Rd in Scarborough\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Frequency:\n                  <\/u>\n                <\/i>\n              <\/b>\n              <b>\n              <\/b>\n              Once a Year 2 \u20133 Weeks before Christmas\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Volunteers Contribution:\n                  <\/u>\n                <\/i>\n              <\/b>\n              3 Hours of fun team work\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Dedicated Time:\n                  <\/u>\n                <\/i>\n              <\/b>\n              3 hours shift (multiple shifts are scheduled to assemble a large number of baskets.\n              <b>\n                <i>\n                  <u>\n                  <\/u>\n                <\/i>\n              <\/b>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Leading Servants:\n                  <\/u>\n                <\/i>\n              <\/b>\n              <i>\n                &nbsp;\n                <a href=\"mailto:westhillservices@smsv.ca\"><a href=\"mailto:westhillservices@smsv.ca\">westhillservices@smsv.ca<\/a>\n                <\/a>\n              <\/i>\n            <\/p>\n            <p class=\"MsoNormal\">\n              Renee Samuel\n            <\/p>\n            <p class=\"MsoNormal\">\n              Dora Nasr\n            <\/p>\n            &nbsp;\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_51\">\n      <li id=\"cid_51\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_51\"><span class=\"form-collapse-mid\" id=\"collapse-text_51\">Yonge Street Mission Christmas Dinner<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_82\">\n        <label class=\"form-label-left\" id=\"label_82\" for=\"input_82\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_82\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_82_0\" name=\"q82_iAm82[]\" value=\"Yonge Street Mission Christmas Dinner\" \/>\n              <label for=\"input_82_0\"> Yonge Street Mission Christmas Dinner <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_56\">\n        <div id=\"cid_56\" class=\"form-input-wide\">\n          <div id=\"text_56\" class=\"form-html\">\n            <p>\n              To serve the Christmas Holiday meal and distribute token gifts\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Location:<\/span>\n                <\/em>\n              <\/strong>\n              Parliament Street & Gerrard Street East\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Frequency:<\/span>\n                <\/em>\n              <\/strong>\n              &nbsp; once a year specific date\n              <strong>\n                <em><span style=\"text-decoration: underline;\"><\/span>\n                <\/em>\n              <\/strong>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Volunteers Contribution:<\/span>\n                <\/em>\n              <\/strong>\n              Time to serve and participate\n              <strong>\n                <em><span style=\"text-decoration: underline;\"><\/span>\n                <\/em>\n              <\/strong>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Dedicated Time<\/span>\n                <\/em>\n              <\/strong>\n              ; 3-4 hours\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">&nbsp;Leading Servants:<\/span>\n                <\/em>\n              <\/strong>\n              &nbsp;<span><span style=\"font-size: x-small;\">Maurice Cyril<\/span><\/span>\n              <a href=\"mailto:ysmservices@smsv.ca\">ysmservices@smsv.ca<\/a>\n            <\/p>\n            &nbsp;\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_88\">\n      <li id=\"cid_88\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_88\"><span class=\"form-collapse-mid\" id=\"collapse-text_88\">West Hill \u201cHolidays Baskets\u201d for Seniors<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_89\">\n        <label class=\"form-label-left\" id=\"label_89\" for=\"input_89\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_89\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_89_0\" name=\"q89_iAm\" value=\"West Hill \u201cHolidays Baskets\u201d for Seniors\" \/>\n              <label for=\"input_89_0\"> West Hill \u201cHolidays Baskets\u201d for Seniors <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_90\">\n        <div id=\"cid_90\" class=\"form-input-wide\">\n          <div id=\"text_90\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              A small wish list is provided to the volunteer, who will shop, buy, package and deliver a gift to a needy, isolated senior member of the community.&nbsp;&nbsp;\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Location:\n                  <\/u>\n                <\/i>\n              <\/b>\n              Deliver to the specific senior home (in the Scarborough neighborhood)\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Frequency:\n                  <\/u>\n                <\/i>\n              <\/b>\n              <i>\n                Once a Year before 7 \u2013 10 days before Christmas\n              <\/i>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    <b>\n                      <i>\n                        <u>\n                          Volunteers Contribution:\n                        <\/u>\n                      <\/i>\n                    <\/b>\n                  <\/u>\n                <\/i>\n              <\/b>\n              the cost of the basket content ($30 - $45), the effort to put together the basket, the delivery to the senior and a short visit.&nbsp; The volunteer select from a number of wish lists and recipients.\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    <b>\n                      <i>\n                        <u>\n                          Dedicated Time:\n                        <\/u>\n                      <\/i>\n                    <\/b>\n                  <\/u>\n                <\/i>\n              <\/b>\n              time to shop and deliver the basket and \u00bd hour visit\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    <b>\n                      <i>\n                        <u>\n                          Contacts\/ Lead Servants:\n                        <\/u>\n                      <\/i>\n                    <\/b>\n                  <\/u>\n                <\/i>\n              <\/b>\n              <u>\n                Renee Samuel, Dora Nasr\n              <\/u>\n              <i>\n                <a href=\"mailto:westhillservices@smsv.ca\">westhillservices@smsv.ca<\/a>\n              <\/i>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_57\">\n      <li id=\"cid_57\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_57\"><span class=\"form-collapse-mid\" id=\"collapse-text_57\">Christmas Market at Yonge Street Mission<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_85\">\n        <label class=\"form-label-left\" id=\"label_85\" for=\"input_85\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_85\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_85_0\" name=\"q85_iAm83[]\" value=\"Christmas Market at Yonge Street Mission\" \/>\n              <label for=\"input_85_0\"> Christmas Market at Yonge Street Mission <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_59\">\n        <div id=\"cid_59\" class=\"form-input-wide\">\n          <div id=\"text_59\" class=\"form-html\">\n            <p>\n              To serve at YSM warehouse while needy family visit the warehouse, shopping for their Christmas needs.\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Location:<\/span>\n                <\/em>\n              <\/strong>\n              Parliament Street & Gerrard Street East\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Frequency:<\/span>\n                <\/em>\n              <\/strong>\n              &nbsp; 3-4 hours\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Volunteers Contribution:<\/span>\n                <\/em>\n              <\/strong>\n              Organize the warehouse and help the shoppers\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Dedicated Time<\/span>\n                <\/em>\n              <\/strong>\n              ;\n              <strong>\n                <em>\n                <\/em>\n              <\/strong>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <strong>\n                <em><span style=\"text-decoration: underline;\">Leading Servants:<\/span>\n                <\/em>\n              <\/strong><span><span style=\"font-size: x-small;\">Maurice Cyril<\/span><\/span>\n              <a href=\"mailto:ysmservices@smsv.ca\">ysmservices@smsv.ca<\/a>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_84\">\n      <li id=\"cid_84\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_84\"><span class=\"form-collapse-mid\" id=\"collapse-text_84\">Social Committee Services<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_87\">\n        <label class=\"form-label-left\" id=\"label_87\" for=\"input_87\"> I am interested in participating and receiving emails: <\/label>\n        <div id=\"cid_87\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_87_0\" name=\"q87_iAm87\" value=\"Social Committee Services\" \/>\n              <label for=\"input_87_0\"> Social Committee Services <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_86\">\n        <div id=\"cid_86\" class=\"form-input-wide\">\n          <div id=\"text_86\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n            <\/p>\n            <p class=\"MsoNormal\">\n              One of the social Committee functions is to organize major SMSV Church events, banquets and special celebrations\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Location:\n                  <\/u>\n                <\/i>\n              <\/b>\n              SMSV or varied banquet locations\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Frequency:\n                  <\/u>\n                <\/i>\n              <\/b>\n              &nbsp; 5-7 Times per year\n              <br>\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Volunteers Contribution:\n                  <\/u>\n                <\/i>\n              <\/b>\n              Volunteers are needed for the major banquets and events to set up banquet hall, serve the meals and clean up after the event.\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Dedicated Time\n                  <\/u>\n                <\/i>\n              <\/b>\n              : 4- 5 hours per event\n            <\/p>\n            <p class=\"MsoNormal\">\n              <b>\n                <i>\n                  <u>\n                    Leading Servants\n                  <\/u>\n                <\/i>\n              <\/b>\n              <i>\n                : Sue Armanios and Marlenne Doss\n                <a href=\"mailto:socialcommittee@smsv.ca\">socialcommittee@smsv.ca<\/a>\n              <\/i>\n            <\/p>\n            &nbsp;\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section\" id=\"section_27\">\n      <li id=\"cid_27\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table form-collapse-hidden\" id=\"collapse_27\"><span class=\"form-collapse-mid\" id=\"collapse-text_27\">Click to edit this text...<\/span><span class=\"form-collapse-right form-collapse-right-show\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_15\">\n        <label class=\"form-label-left\" id=\"label_15\" for=\"input_15\">\n          ....<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_15\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_15_0\" name=\"q15_15\" value=\"I have read and agree to the <a href=&quot;http:\/\/smsv.ca\/privacypolicy.html&quot; target=&quot;_blank&quot;>Terms of Service <\/a> and <a href=&quot;http:\/\/smsv.ca\/privacypolicy.html&quot; target=&quot;_blank&quot;>Privacy Policy<\/a>, and to receive important communications from St. Maurice &amp; St. Verena Coptic Orthodox Church electronically.\" \/>\n              <label for=\"input_15_0\">\n                I have read and agree to the\n                <a href=\"http:\/\/smsv.ca\/privacypolicy.html\" target=\"_blank\">Terms of Service <\/a>\n                and\n                <a href=\"http:\/\/smsv.ca\/privacypolicy.html\" target=\"_blank\">Privacy Policy<\/a>\n                , and to receive important communications from St. Maurice &amp; St. Verena Coptic Orthodox Church electronically.\n              <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_1\">\n        <div id=\"cid_1\" class=\"form-input-wide\">\n          <div style=\"margin-left:156px\" class=\"form-buttons-wrapper\">\n            <button id=\"input_1\" type=\"submit\" class=\"form-submit-button\">\n              Submit Form\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li style=\"display:none\">\n        Should be Empty:\n        <input type=\"text\" name=\"website\" value=\"\" \/>\n      <\/li>\n    <\/ul>\n  <\/div>\n  <input type=\"hidden\" id=\"simple_spc\" name=\"simple_spc\" value=\"1210445216\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"1210445216-1210445216\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

