// main function function showTitle(srcUrl, srcFilename, width, height, titleStr, linkStr, hAlign, tColor) { var str = ""; // window.alert(str); document.write(str); } // percent-encoding function pEncode(str) { str = str.replace(/&/g, "%26"); //str = str.replace(/[&]/g, "%26"); str = str.replace(/[+]/g, "%2b"); return str; }