function writeManga(text){
document.write('<span style="font-size:20px; color: #000000; vertical-align: top; font-family: verdana; ">');
for (i=0;i<text.length;i++){
if (text.toUpperCase().charCodeAt(i) >= 65 && text.toUpperCase().charCodeAt(i) <= 90){
code = text.toUpperCase().charCodeAt(i)-64;
document.write("<img src='mangafontimages/font_capital_r1_c" + code + ".png' alt='"+text.toUpperCase().charAt(i)+"'>");
}
else document.write(" " + text.toUpperCase().charAt(i));
}
document.write("</span> ");
}
function writeMangaLink(text, linkurl){
document.write("<span style='font-size:20px; color: #000000; vertical-align: top; font-family: verdana;' > <a href='" + linkurl+"'>");
for (i=0;i<text.length;i++){
if (text.toUpperCase().charCodeAt(i) >= 65 && text.toUpperCase().charCodeAt(i) <= 90){
code = text.toUpperCase().charCodeAt(i)-64;
document.write("<img src='mangalinkfontimages/font_capital_r1_c" + code + ".png' alt='"+text.toUpperCase().charAt(i)+"' style='border-style: none'>");
}
else document.write(" " + text.toUpperCase().charAt(i));
}
document.write("</a></span> ");
}