function copyright()
{
var todayis = new Date();
document.write( '<div class="pfont2" style="font-size: 10px; border: 1px solid gray; margin: 20px 0 0 190px; padding: 12px 0 4px 12px; width: 420px; height: 30px;">' );
document.write( 'Copyright &copy; 2002-' + todayis.getFullYear() + ' Standard Schnauzer Club of America, Inc. All rights reserved.');
document.write( '</div><br />' );
return true;
}

function otherFooterText( fIndex )
{
// 1 - 
// 2 - 
// 3 - rescue page
var text = new Array();
divBox1 = '<div class="pfont2" style="font-size: 10px; border: 1px solid gray; margin: 20px 0 0 140px; padding: 12px 0 4px 12px; width: 520px; height: 80px;">' ;
line1 = 'All drawings, artwork, photographs verbage used on this site are copyrighted and the property ';
line2 = 'of the SSCA and the artist/photographer/organization who created it. They are provided strictly ';
line3 = 'for your personal viewing and all other uses are prohibited. <br />';
line4 = 'NOTE: All files are the property of SSCA, SSCA members, or AKC. If there\'s a copyright ';
line5 = 'problem on this site, please contact the webmaster and it will be removed immediately! ';

divBox2 = '<div class="pfont2" style="font-size: 10px; border: 1px solid gray; margin: 20px 0 0 210px; padding: 12px 0 4px 12px; width: 380px; height: 50px;">' ;
line6 = 'Thanks to Gail Mackiernan for supplying the text.<br /><br />';
line7 = '&copy;AKC - The photograph is Reprinted with permission from the AKC.';

divBox3 = '<div class="pfont2" style="font-size: 10px; border: 1px solid gray; margin: 20px 0 0 275px; padding: 12px 0 4px 12px; width: 250px; height: 30px;">' ;
line8 = 'Send changes and corrections to the <a href="mailto:RoyFDvorak23@comcast.net?subject=SSCA%20Web%20Change">Webmaster</a>';

divBox4 = '<div class="pfont2" style="font-size: 10px; border: 2px solid red; margin: 20px 0 0 140px; padding: 12px 0 4px 12px; width: 520px; height: 50px;">' ;

line9  = 'Disclaimer - The breeders on this SSCA Referral List page are members in good standing of the SSCA, ';
line10 = 'but under no circumstances does the SSCA guarantee the services of said members. Further, ';
line11 = 'neither the SSCA nor its members will be held liable for any actions.';

	if ( fIndex == 1 )
	{
		showIt = line1 + line2 + line3 + line4 + line5;
		divBox = divBox1;
	}
	if ( fIndex == 2 )
	{
		showIt = line6 + line7;
		divBox = divBox2;
	}
	if ( fIndex == 3 )
	{
		showIt = line8;
		divBox = divBox3;
	}
	if ( fIndex == 4 )
	{
		showIt = line9 + line10 + line11;
		divBox = divBox4;
	}
	
	document.write( divBox );
	document.write( showIt );
	document.write( '</div><br />' );
	return true;
}
