//This is a file containing js code to be use globally
//throughout the ETS hosted sites on the windows server.


//Function: CREDITS
//  roleText  - e.g., powered by, hosted by, designed by, etc.
//  styleText - the style name applied to the roleText
//  styleHref - the style name applied to <a href> tag

function credits(roleText, styleText, styleHref)
{

document.write("<span class='" + styleText + "'>" + roleText + "</span> <a href='http://equaltemperamentsolutions.com' class='" + styleHref + "' target='_top'>Equal Temperament Solutions</a>");

}