
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Community Calendar</title>
<link>http://www.mncun.org/events/event_list.asp</link>
<description><![CDATA[  
 

#SpSubHead { display: none !important; }

 
 
    Education and training is key to maintaining competent, dedicated credit union professionals and volunteers. MnCUN offers more than 100 cost-effective educational opportunities throughout the year on a wide variety of topics. For details on the current quarter's educational offerings, click the&nbsp;following link:&nbsp; 2nd Quarter Education Brochure   &nbsp;(pdf). &nbsp;
 
  0) {

      var next, prev, count;

      // Pre-fetch the next slide image(s)
      next = this.current;
      prev = this.current;
      count = 0;
      do {

        // Get the next and previous slide number
        // Loop past the ends of the slideshow if necessary
        if (++next >= this.slides.length) next = 0;
        if (--prev < 0) prev = this.slides.length - 1;

        // Preload the slide image
        this.slides[next].load();
        this.slides[prev].load();

        // Keep going until we have fetched
        // the designated number of slides

      } while (++count < this.prefetch);
    }
  }

  //--------------------------------------------------
  this.goto_slide = function(n) {
    // This method jumpts to the slide number you specify.
    // If you use slide number -1, then it jumps to the last slide.
    // You can use this to make links that go to a specific slide,
    // or to go to the beginning or end of the slideshow.
    // Examples:
    // onClick="myslides.goto_slide(0)"
    // onClick="myslides.goto_slide(-1)"
    // onClick="myslides.goto_slide(5)"
  
    if (n == -1) {
      n = this.slides.length - 1;
    }
  
    if (n < this.slides.length && n >= 0) {
      this.current = n;
    }
  
    this.update();
  }


  //--------------------------------------------------
  this.goto_random_slide = function(include_current) {
    // Picks a random slide (other than the current slide) and
    // displays it.
    // If the include_current parameter is true,
    // then 
    // See also: shuffle()

    var i;

    // Make sure there is more than one slide
    if (this.slides.length > 1) {

      // Generate a random slide number,
      // but make sure it is not the current slide
      do {
        i = Math.floor(Math.random()*this.slides.length);
      } while (i == this.current);
 
      // Display the slide
      this.goto_slide(i);
    }
  }


  //--------------------------------------------------
  this.next = function() {
    // This method advances to the next slide.

    // Increment the image number
    if (this.current < this.slides.length - 1) {
      this.current++;
    } else if (this.repeat) {
      this.current = 0;
    }

    this.update();
  }


  //--------------------------------------------------
  this.previous = function() {
    // This method goes to the previous slide.
  
    // Decrement the image number
    if (this.current > 0) {
      this.current--;
    } else if (this.repeat) {
      this.current = this.slides.length - 1;
    }
  
    this.update();
  }


  //--------------------------------------------------
  this.shuffle = function() {
    // This method randomly shuffles the order of the slides.

    var i, i2, slides_copy, slides_randomized;

    // Create a copy of the array containing the slides
    // in sequential order
    slides_copy = new Array();
    for (i = 0; i < this.slides.length; i++) {
      slides_copy[i] = this.slides[i];
    }

    // Create a new array to contain the slides in random order
    slides_randomized = new Array();

    // To populate the new array of slides in random order,
    // loop through the existing slides, picking a random
    // slide, removing it from the ordered list and adding it to
    // the random list.

    do {

      // Pick a random slide from those that remain
      i = Math.floor(Math.random()*slides_copy.length);

      // Add the slide to the end of the randomized array
      slides_randomized[ slides_randomized.length ] =
        slides_copy[i];

      // Remove the slide from the sequential array,
      // so it cannot be chosen again
      for (i2 = i + 1; i2 < slides_copy.length; i2++) {
        slides_copy[i2 - 1] = slides_copy[i2];
      }
      slides_copy.length--;

      // Keep going until we have removed all the slides

    } while (slides_copy.length);

    // Now set the slides to the randomized array
    this.slides = slides_randomized;
  }


  //--------------------------------------------------
  this.get_text = function() {
    // This method returns the text of the current slide
  
    return(this.slides[ this.current ].text);
  }


  //--------------------------------------------------
  this.get_all_text = function(before_slide, after_slide) {
    // Return the text for all of the slides.
    // For the text of each slide, add "before_slide" in front of the
    // text, and "after_slide" after the text.
    // For example:
    // document.write(" ");
    // document.write(s.get_all_text(" ","\n"));
    // document.write("<\/ul>");
  
    all_text = "";
  
    // Loop through all the slides in the slideshow
    for (i=0; i < this.slides.length; i++) {
  
      slide = this.slides[i];
    
      if (slide.text) {
        all_text += before_slide + slide.text + after_slide;
      }
  
    }
  
    return(all_text);
  }


  //--------------------------------------------------
  this.display_text = function(text) {
    // Display the text for the current slide
  
    // If the "text" arg was not supplied (usually it isn't),
    // get the text from the slideshow
    if (!text) {
      text = this.slides[ this.current ].text;
    }
  
    // If a textarea has been specified,
    // then change the text displayed in it
    if (this.textarea && typeof this.textarea.value != 'undefined') {
      this.textarea.value = text;
    }

    // If a text id has been specified,
    // then change the contents of the HTML element
    if (this.textid) {

      r = this.getElementById(this.textid);
      if (!r) { return false; }
      if (typeof r.innerHTML == 'undefined') { return false; }

      // Update the text
      r.innerHTML = text;
    }
  }


  //--------------------------------------------------
  this.hotlink = function() {
    // This method calls the hotlink() method for the current slide.
  
    this.slides[ this.current ].hotlink();
  }


  //--------------------------------------------------
  this.save_position = function(cookiename) {
    // Saves the position of the slideshow in a cookie,
    // so when you return to this page, the position in the slideshow
    // won't be lost.
  
    if (!cookiename) {
      cookiename = this.name + '_slideshow';
    }
  
    document.cookie = cookiename + '=' + this.current;
  }


  //--------------------------------------------------
  this.restore_position = function(cookiename) {
  // If you previously called slideshow_save_position(),
  // returns the slideshow to the previous state.
  
    //Get cookie code by Shelley Powers
  
    if (!cookiename) {
      cookiename = this.name + '_slideshow';
    }
  
    var search = cookiename + "=";
  
    if (document.cookie.length > 0) {
      offset = document.cookie.indexOf(search);
      // if cookie exists
      if (offset != -1) { 
        offset += search.length;
        // set index of beginning of value
        end = document.cookie.indexOf(";", offset);
        // set index of end of cookie value
        if (end == -1) end = document.cookie.length;
        this.current = parseInt(unescape(document.cookie.substring(offset, end)));
        }
     }
  }


  //--------------------------------------------------
  this.noscript = function() {
    // This method is not for use as part of your slideshow,
    // but you can call it to get a plain HTML version of the slideshow
    // images and text.
    // You should copy the HTML and put it within a NOSCRIPT element, to
    // give non-javascript browsers access to your slideshow information.
    // This also ensures that your slideshow text and images are indexed
    // by search engines.
  
    $html = "\n";
  
    // Loop through all the slides in the slideshow
    for (i=0; i < this.slides.length; i++) {
  
      slide = this.slides[i];
  
      $html += ' ';
  
      if (slide.link) {
        $html += ' ';
      }
  
      $html += ' ';
  
      if (slide.link) {
        $html += "<\/a>";
      }
  
      if (slide.text) {
        $html += " \n" + slide.text;
      }
  
      $html += "<\/P>" + "\n\n";
    }
  
    // Make the HTML browser-safe
    $html = $html.replace(/\&/g, "&amp;" );
    $html = $html.replace(/ /g, "&gt;" );
  
    return(' ' + $html + ' ');
  }


  //==================================================
  // Private methods
  //==================================================

  //--------------------------------------------------
  this.loop = function() {
    // This method is for internal use only.
    // This method gets called automatically by a JavaScript timeout.
    // It advances to the next slide, then sets the next timeout.
    // If the next slide image has not completed loading yet,
    // then do not advance to the next slide yet.

    // Make sure the next slide image has finished loading
    if (this.current < this.slides.length - 1) {
      next_slide = this.slides[this.current + 1];
      if (next_slide.image.complete == null || next_slide.image.complete) {
        this.next();
      }
    } else { // we're at the last slide
      this.next();
    }
    
    // Keep playing the slideshow
    this.play( );
  }


  //--------------------------------------------------
  this.valid_image = function() {
    // Returns 1 if a valid image has been set for the slideshow
  
    if (!this.image)
    {
      return false;
    }
    else {
      return true;
    }
  }

  //--------------------------------------------------
  this.getElementById = function(element_id) {
    // This method returns the element corresponding to the id

    if (document.getElementById) {
      return document.getElementById(element_id);
    }
    else if (document.all) {
      return document.all[element_id];
    }
    else if (document.layers) {
      return document.layers[element_id];
    } else {
      return undefined;
    }
  }
  

  //==================================================
  // Deprecated methods
  // I don't recommend the use of the following methods,
  // but they are included for backward compatibility.
  // You can delete them if you don't need them.
  //==================================================

  //--------------------------------------------------
  this.set_image = function(imageobject) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.image = document.images.myimagename;
    // s.update();

    if (!document.images)
      return;
    this.image = imageobject;
  }

  //--------------------------------------------------
  this.set_textarea = function(textareaobject) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.textarea = document.form.textareaname;
    // s.update();

    this.textarea = textareaobject;
    this.display_text();
  }

  //--------------------------------------------------
  this.set_textid = function(textidstr) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.textid = "mytextid";
    // s.update();

    this.textid = textidstr;
    this.display_text();
  }
}

//-->
 

 
 
 
 







 
 

 
  ", " \n");
if (nodivtext) {
  document.write(" \n" + nodivtext + "\n ");
}
//-->
 

 

 
   

 
 
 

 

 
&amp;lt;HR&amp;gt;
Since your web browser does not support JavaScript,
here is a non-JavaScript version of the image slideshow:
&amp;lt;P&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad1.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad2.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad3.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad4.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad5.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad6.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad7.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad8.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad9.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad10.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad11.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad12.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad13.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad14.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad15.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad16.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad17.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad18.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad19.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad20.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad21.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad22.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad23.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;

 
   
   
 MnCUN Major Events 
 

   CEO Conference : July 17-19, 2013&nbsp;– Duluth  
    MnCUN Fall Conference : Sept. 6-8, 2013&nbsp;– Maddens on Gull Lake, Brainerd  
    Hike the Hill : Oct. 1-3, 2013&nbsp;– Washington, D.C.  
   2013 Supervisory Committee Workshops:   Sept. 24 - Duluth; Sept. 25 - St. Cloud; Oct. 15 - St. Paul  
   CUNA Mutual Online Discovery Conference: Oct. 8, 2013     MnCUN Annual Meeting: April 25-26, 2014 - RadissonBlu at the Mall of America, Bloomington    
  In addition, MnCUN's Compliance Calendar provides credit unions information about important upcoming comment deadlines, regulation effective dates and other compliance deadlines.   Click the calendar links for more details.  
 
     To see&nbsp;a full quarter of education sessions available, view the&nbsp;printable&nbsp; 2nd Quarter Education Brochure .     
 &nbsp; 
 Webinars On Demand 
  Along with the upcoming live education sessions below, the Network's&nbsp; Webinars on Demand  page provides a full list of programs provided via web link.&nbsp;Simply order the sessions&nbsp;and&nbsp;use them&nbsp;at a&nbsp;time that's convenient for you. Below is a link to&nbsp;the latest&nbsp;On Demand titles&nbsp;now available to you.  
 
    NEW SESSIONS!    Webinars On Demand&nbsp;&nbsp;– Titles&nbsp;available through&nbsp;May     
    ]]></description>
<lastBuildDate>Fri, 24 May 2013 08:26:30 GMT</lastBuildDate>
<pubDate>Wed, 5 Jun 2013 18:00:00 GMT</pubDate>
<copyright>Copyright &#xA9; 2013 Minnesota Credit Union Network</copyright>
<atom:link href="http://www.mncun.org/events/event_rss.asp?cat=4830" rel="self" type="application/rss+xml"></atom:link>
<item>
<title>Webinar – Compliance Rules Lenders Must Know</title>
<link>http://www.mncun.org/events/event_details.asp?id=281755</link>
<guid>http://www.mncun.org/events/event_details.asp?id=281755</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style>
<br>
<span style="font-size: 10pt;"><p>Compliance training for lenders is no longer optional and can reduce loss. Flood insurance violations have increased, HMDA data accuracy issues continue to cause civil money penalties, and fair lending remains an exam focus with regulators. This session will cover&nbsp; everything from Regulation B to Z and outline specific disclosures and timing requirements. Attendees will receive checklists and guidance to help lending staff work smarter, not harder.</p></span><p>&nbsp;</p><p><span style="font-size: 10pt;"><span style="font-weight: bold;">Presenter:</span> Susan Costonis, Compliance Consulting &amp; Training for Financial Institutions<br><span style="color: rgb(255, 0, 0); font-weight: bold;">Who should attend:</span>&nbsp;Branch Managers, Compliance Officers, Lenders&nbsp;and CEOs</span></p>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Time:</span> 2 p.m.-3:30 p.m.<br><span style="font-weight: bold;">Cost:</span> $209 for live webinar only; $229 for live webinar, plus a web link and&nbsp;free&nbsp;CD-ROM <br><strong>Registration deadline:</strong> Friday, May 31</span></p>
<p>&nbsp;</p>
<h3>About Webinars</h3>
<p><span style="font-size: 10pt;">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </span></p>
<p><span style="font-size: 10pt;">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</span></p>]]></description>
<pubDate>Wed, 5 Jun 2013 19:00:00 GMT</pubDate>
</item>
</channel>
</rss>
