The below does the replace you desire.  Add upon as you feel free.

<script language="javascript">

var longstring;
longstring = '<!--IMAIL.MailboxFolderSummary-->';
newlongstring = replace(longstring,"<TABLE Border=1>","<table
border=0>");
document.write(newlongstring);

function replace(instring,replaceword,replacewith)
{
    var text=" " + instring + " ";
    apos= text.indexOf(replaceword);
    while (apos > -1)
    {
        text=text.substring(1,apos) + replacewith +
text.substring(apos+replaceword.length,text.length);
        apos=text.indexOf(replaceword);
    }
    return text;
}

</script>

Please visit http://www.ipswitch.com/support/mailing-lists.html 
to be removed from this list.

Reply via email to