<!-- Begin

function emaillist()
{
var intro = "<p>Or, please email to one of the email addresses below for your inquiry:<br> <br>";
var subjct = new Array("For general info","For rosary repair request","Regarding orders","For broken links or other website features");
var usr = new Array("rosario","repair","order","webmaster");
var domain = "rosaryworks";
var suffix = "com";

document.write(intro);

for (count=0; count <= 3; count++)
document.write(subjct[count] + ': <a href="' + 'mailto:' + usr[count] + '@' + domain + '.' + suffix + '">' + usr[count] + '@' + domain + '.' + suffix + '</a><br>');

document.write("</p>");
}

//  End -->