//  writeLink
//  by K Fisher
//  http://www.creativeweb.com.au

function writeLink(text, url)
{
 document.writeln('&nbsp;|&nbsp; <a href="' + url + '"> ' + text + '</a>');
}

writeLink('Front Page', 'http://www.noritakecollectorsguild.info/index.html');
writeLink('Collector Catalogue Generator', 'http://www.noritakecollectorsguild.info/Catalogue/index.shtml');
writeLink('Fact Sheets', 'http://www.noritakecollectorsguild.info/factsheets.html');
writeLink('Frequently Asked Questions', 'http://www.noritakecollectorsguild.info/faqs.html');
writeLink('Guided Tours', 'http://www.noritakecollectorsguild.info/tours/index.html');
writeLink('Knowledge Partnerships', 'http://www.noritakecollectorsguild.info/researchers/index.html');
writeLink('Links & Other Groups', 'http://www.noritakecollectorsguild.info/resources.html');
writeLink('Noritake Backmarks Knowledge Library', 'http://www.noritakecollectorsguild.info/bstamps/index.html');
writeLink('Replacement Services', 'http://www.noritakecollectorsguild.info/replacements.html');
writeLink('Restoration services', 'http://www.noritakecollectorsguild.info/restorations.html');
writeLink('RSS Feeds', 'http://www.noritakecollectorsguild.info/ncgrssfeeds.xml');
writeLink('Tableware Pattern Guide', 'http://www.noritakecollectorsguild.info/patterns/patterns.html');
writeLink('Glossary of Terminology', 'http://www.noritakecollectorsguild.info/terminology.html');
writeLink('Tell A Friend Card', 'http://www.noritakecollectorsguild.info/postcards/index.html');
writeLink('Site Update ', 'http://www.noritakecollectorsguild.info/news&articles.html');
writeLink('Contact Us', 'http://www.noritakecollectorsguild.info/contact.html');

// and so on...

