/*
 * Dummy-Function for TAG-Handling
**/
function b(tag)
{
        var t = parseInt(tag);
        if (t <= 0)
        {
                document.write( "</B>");
        }
        else
                if (t >= 1)
                {
                        document.write( "<B>");
                }
}

/*
 * Dummy-Function for TAG-Handling
**/
function i(tag)
{
        var t = parseInt(tag);
        if (t <= 0)
        {
                document.write( "</I>");
        }
        else
                if (t >= 1)
                {
                        document.write( "<I>");
        }
}

/*
 * Dummy-Function for TAG-Handling
**/
function u(tag)
{
        var t = parseInt(tag);
        if (t <= 0)
        {
                document.write( "</U>");
        }
        else
                if (t >= 1)
                {
                        document.write( "<U>");
                }
}

/*
 * Dummy-Function for TAG-Handling
**/
function fs(tag)
{
        var t = parseInt(tag);
        if (t = 0)
        {
                document.write( "</FONT>");
        }
        else
        {
                document.write( "<FONT SIZE=\"" + tag + "\">");
        }
}

/*
 * Dummy-Function for TAG-Handling
**/
function br()
{
        document.write( "<BR>");
}