// 
// Print the credit notice at the bottom of the page
// 
//
function credit()
{

    document.write("<p class=\"DesignNote\">Design by: ");
    document.write("<a class=\"DesignNote\" target=\"_blank\" ");
    document.write("href=\"http://www.fortewebservices.com\">");
    document.write("www.fortewebservices.com</a><br>");
    document.write("© 2009 West Coast Amateur Musicians Society</p><br>");
		
    return;
}


