﻿// JScript File
// Handles removal of any html tags going into the title tags.

function replaceTitle () {
    try
    {
        document.title = document.title.replace(/\<[^>]*\>/, " ");
    }
    catch (err)
    { }
}

replaceTitle();

