var products = [ ];

    products.push({ id: 53, title: 'デンカ放熱シート' });
    products.push({ id: 57, title: 'クリアレンシート' });
    products.push({ id: 45, title: 'デンカサーモシートEC' });
    products.push({ id: 16, title: '窒化ケイ素粉末' });
    products.push({ id: 17, title: '窒化ホウ素粉末' });

var prefix = "";
if(location.protocol == 'https:') {
	prefix = "http://" + location.hostname;
}
document.write('<div class="text"><ul>');
for (var p in products) {
    document.write('<li><a href="');
    document.write(prefix + "/denzai/msds/" + products[p].id + ".html");
    document.write('">');
    document.write(products[p].title);
    document.write('</a></li>');
}
document.write('<li class="end"><a href="' + prefix + '/denzai/msds/">MSDS Top</a></li>');
document.write('</ul></div>');

