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.
- Re: [IMail Forum] Includes/AS... Michael B. Murdock
- Re: [IMail Forum] Includes/AS... Chris ten Den
- Re: [IMail Forum] Includes/AS... Michael B. Murdock
- Re: [IMail Forum] Includes/AS... Chris ten Den
- Re: [IMail Forum] Includes/AS... Michael B. Murdock
- Re: [IMail Forum] Includes/AS... Chris ten Den
- Re: [IMail Forum] Includes/ASP in... Michael Murdock
- Re: [IMail Forum] Includes/ASP in Web Templates David Gregg
- Re: [IMail Forum] Includes/ASP in Web Templates Grant Griffith
- Re: [IMail Forum] Includes/ASP in Web Templates Vaughn Thurman
- Re: [IMail Forum] Includes/ASP in Web Templates Chris ten Den
- Re: [IMail Forum] Includes/ASP in Web Templates Michael B. Murdock
- [IMail Forum] whoa, what's this? Len Conrad
- RE: [IMail Forum] whoa, what's this? Paul Sinclair
- RE: [IMail Forum] whoa, what's this? Len Conrad
- Re: [IMail Forum] Includes/ASP in Web Template... Chris ten Den
- Re: [IMail Forum] Includes/ASP in Web Template... Chris ten Den
- Re: [IMail Forum] Includes/ASP in Web Template... Vaughn Thurman
- [IMail Forum] Includes/ASP in Web Templates Phil Daws
- RE: [IMail Forum] Includes/ASP in Web Templates Dustin Krysak
