//This script prints the footer information giving MWS credit

var design = 1;
var hosting = 1;
var powered = 0;

if( document.getElementById('sdmummeryfamily') ){
	powered = 1;
	}
else if(( document.getElementById('jonsmindseye') ) || ( document.getElementById('cclending') ) || ( document.getElementById('nationaleccelesia') )){
   design = 0;
   }

if(( design ) && ( hosting )){
	document.write('Site designed &amp; hosted by <a href="http://www.mummeryws.com" target="_new" class="creditlink">Mummery Web Solutions</a>');
	}
else if( design ){
	document.write('Site designed by <a href="http://www.mummeryws.com" target="_new" class="creditlink">Mummery Web Solutions</a>');
	}
else if( hosting ){
   document.write('Site hosted by <a href="http://www.mummeryws.com" target="_new" class="creditlink">Mummery Web Solutions</a>');
   }

if( powered ){
	document.write('<span class="creditspace">&nbsp;</span><br><a href="http://www.mummeryws.com" target="_new"><img src="http://www.mummeryws.com/graphics/mws-poweredby.jpg" width="200" height="75" alt="" border=0></a>');
	}
