<!--
/* ********************************************************************************* 
   COPYRIGHT('(C) CMS MANUFACTURING SYSTEMS INC. - 1993, 1997')
   File Name:  CMSEasy_footer.js                                                          
   Description:  This javascript will be embeded in all of the main pages for the    
                 CMSEasy pages.  It will display the footer information for the pages.  
   _________________________________________________________________________________ 
   Modification History:                                                             
   2001-04-19  Michael Victor    Created script                             
   2001-08-20  Michael Victor    The Navigation, PageContents and Footer divisions,
                                 are now written using document.writeln, instead of
                                 using the .innerHTML methods.  (this should resolve
                                 the header section expanding and contracting when
                                 rendering the page)
   2002-05-28  Michael Victor    Release 2.0 mods
   2007-12-21  Jeff Bowden       Changed CMS references to solarsoft
   ********************************************************************************* */

// This function will populate the footer inline frame
function popfooter()
{
	var footerHtml = ""
	
	footerHtml = 
		  '<div class="Footer" id="footer">' + newline
		+ ' <a href="http://www.solarsoft.com" target="_blank">' +
           '<img class="PwdByCMS" alt="Powered by Solarsoft" src="/gifs/footer.gif"></img></a>' + newline
        + '</div>' + newline
           
    document.writeln(footerHtml)
}
-->
