<!-- Hide from browsers
var defIMGWidth = "128";
var defIMGHeight = "5";
var defIMGLinkWidth = "128";
var defIMGLinkHeight = "25";

var defBotIMGWidth = "136";
var defBotIMGHeight = "5";
var defBotIMGLinkWidth = "136";
var defBotIMGLinkHeight = "23";

var defIntIMGWidth = "128";
var defIntIMGHeight = "5";
var defIntIMGLinkWidth = "128";
var defIntIMGLinkHeight = "25";

var defHSpace = "0";
var defVSpace = "0";
var defBorder = "0";

function writeIMGTag(srcImg, width, height) {
    var line = '<img src="' + srcImg + '" width="' + width + '" height="' + height + '">';
    return line;
}

function writeIMGTagWithDefaults(srcImg) {
    var line = '<img src="' + srcImg + '" width="' + defIMGWidth + '" height="' + defIMGHeight + '">';
    return line;
}

function writeBotIMGTagWithDefaults(srcImg) {
    var line = '<img src="' + srcImg + '" width="' + defBotIMGWidth + '" height="' + defBotIMGHeight + '">';
    return line;
}

function writeIntIMGTagWithDefaults(srcImg) {
    var line = '<img src="' + srcImg + '" width="' + defIntIMGWidth + '" height="' + defIntIMGHeight + '">';
    return line;
}

function writeIMGTagWithouDefaults(srcImg) {
    var line = '<img src="' + srcImg + '">';
    return line;
}

function writeIntIMGTagWithouDefaults(srcImg) {
    var line = '<img src="' + srcImg + '">';
    return line;
}

function writeBotIMGTagWithouDefaults(srcImg) {
    var line = '<img src="' + srcImg + '">';
    return line;
}

function writeIMGTagWithWidthAndHeight(srcImg, width, height, altDesc) {
    var line = '<img SRC="' + srcImg + '" width="' + width + '" height="' + height + '" alt="' + altDesc + '">';
    return line;
}

function writeIMGTagWithDefaultWidthAndHeight(srcImg, altDesc) {
    var line = '<img SRC="' + srcImg + '" width="' + defIMGLinkWidth + '" height="' + defIMGLinkHeight + '" alt="' + altDesc + '">';
    return line;
}

function writeBotIMGTagWithDefaultWidthAndHeight(srcImg, altDesc) {
    var line = '<img SRC="' + srcImg + '" width="' + defBotIMGLinkWidth + '" height="' + defBotIMGLinkHeight + '" alt="' + altDesc + '">';
    return line;
}

function writeIntIMGTagWithDefaultWidthAndHeight(srcImg, altDesc) {
    var line = '<img SRC="' + srcImg + '" width="' + defIntIMGLinkWidth + '" height="' + defIntIMGLinkHeight + '" alt="' + altDesc + '">';
    return line;
}

function writeBRTag() {
    var line = '<BR>';
    return line;
}

function writeHREFTagWithMiceEvents(hrefLink, mouseOver, mouseOut, linkText) {
    var line = '<a HREF="' + hrefLink + '" onMouseover="' + mouseOver + '" onMouseout="' + mouseOut + '">' + linkText + '</a>';
    return line;
}

function writeHREFTagWithoutMiceEvents(hrefLink, linkText) {
    var line = '<a HREF="' + hrefLink + '">' + linkText + '</a>';
    return line;
}

function writeHREFTagWithTargetAndMiceEvents(hrefLink, targetWin, mouseOver, mouseOut, linkText) {
    var line = '<a HREF="' + hrefLink + '" target="' + targetWin + '" onMouseover="' + mouseOver + '" onMouseout="' + mouseOut + '">' + linkText + '</a>';
    return line;
}

function writeHREFTagWithTargetAndWithoutMiceEvents(hrefLink, targetWin, linkText) {
    var line = '<a HREF="' + hrefLink + '" target="' + targetWin + '">' + linkText + '</a>';
    return line;
}

function writeIMGLinkTag(imgName, srcImg, border, hSpace, vSpace, w, h, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" BORDER="' + border + '" HSPACE="' + hSpace + '" VSPACE="' + vSpace + '" width="' + w + '" height="' + h + '" alt="' + altDesc + '">';
    return line;
}

function writeIMGLinkTagWithWidthAndHeight(imgName, srcImg, w, h, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" width="' + w + '" height="' + h + '" alt="' + altDesc + '">';
    return line;
}

function writeIMGLinkTagWithDefaultWidthAndHeight(imgName, srcImg, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" width="' + defIMGLinkWidth + '" height="' + defIMGLinkHeight + '" alt="' + altDesc + '">';
    return line;
}

function writeBotIMGLinkTagWithDefaultWidthAndHeight(imgName, srcImg, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" width="' + defBotIMGLinkWidth + '" height="' + defBotIMGLinkHeight + '" alt="' + altDesc + '">';
    return line;
}

function writeIntIMGLinkTagWithDefaultWidthAndHeight(imgName, srcImg, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" width="' + defIntIMGLinkWidth + '" height="' + defIntIMGLinkHeight + '" alt="' + altDesc + '">';
    return line;
}

function writeIMGLinkTagWithDefaults(imgName, srcImg, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" BORDER="' + defBorder + '" HSPACE="' + defHSpace + '" VSPACE="' + defVSpace + '" width="' + defIMGLinkWidth + '" height="' + defIMGLinkHeight + '" alt="' + altDesc + '">';
    return line;
}

function writeBotIMGLinkTagWithDefaults(imgName, srcImg, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" BORDER="' + defBorder + '" HSPACE="' + defHSpace + '" VSPACE="' + defVSpace + '" width="' + defBotIMGLinkWidth + '" height="' + defBotIMGLinkHeight + '" alt="' + altDesc + '">';
    return line;
}

function writeIntIMGLinkTagWithDefaults(imgName, srcImg, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" BORDER="' + defBorder + '" HSPACE="' + defHSpace + '" VSPACE="' + defVSpace + '" width="' + defIntIMGLinkWidth + '" height="' + defIntIMGLinkHeight + '" alt="' + altDesc + '">';
    return line;
}

function writeIMGLinkTagWithoutDefaults(imgName, srcImg, srcWidth, srcHeight, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" width="' + srcWidth + '" height="' + srcHeight + '" BORDER="' + defBorder + '" HSPACE="' + defHSpace + '" VSPACE="' + defVSpace + '" alt="' + altDesc + '">';
    return line;
}

function writeIntIMGLinkTagWithoutDefaults(imgName, srcImg, srcWidth, srcHeight, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" width="' + srcWidth + '" height="' + srcHeight + '" BORDER="' + defBorder + '" HSPACE="' + defHSpace + '" VSPACE="' + defVSpace + '" alt="' + altDesc + '">';
    return line;
}

function writeBotIMGLinkTagWithoutDefaults(imgName, srcImg, srcWidth, srcHeight, altDesc) {
    var line = '<img NAME="' + imgName + '" SRC="' + srcImg + '" width="' + srcWidth + '" height="' + srcHeight + '" BORDER="' + defBorder + '" HSPACE="' + defHSpace + '" VSPACE="' + defVSpace + '" alt="' + altDesc + '">';
    return line;
}

-->

