document.write('<div class="javascript" style="font-family: monospace;"><br />');
document.write('<br />');
document.write('<span style="color: #003366; font-weight: bold;">function</span> SrchReplace<span style="color: #66cc66;">&#40;</span>Text, Search, Replace<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">while</span> <span style="color: #66cc66;">&#40;</span>Text.<span style="color: #006600;">indexOf</span><span style="color: #66cc66;">&#40;</span>Search<span style="color: #66cc66;">&#41;</span>&gt;=<span style="color: #CC0000;">0</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">var</span> i = Text.<span style="color: #006600;">indexOf</span><span style="color: #66cc66;">&#40;</span>Search<span style="color: #66cc66;">&#41;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Text = Text.<span style="color: #006600;">substr</span><span style="color: #66cc66;">&#40;</span><span style="color: #CC0000;">0</span>, i<span style="color: #66cc66;">&#41;</span>+Replace+Text.<span style="color: #006600;">substr</span><span style="color: #66cc66;">&#40;</span>i+Search.<span style="color: #006600;">length</span><span style="color: #66cc66;">&#41;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">return</span> Text;<br />');
document.write('<span style="color: #66cc66;">&#125;</span><br />');
document.write('<br />');
document.write('<br />');
document.write('&nbsp;</div>');
document.write('If parameter Replace is equal to "" the function simplly removes');
document.write('substring Search from Text string. ');
document.write('<br />&nbsp;<br /><div style="font-size: 12px">Brought to you by the community at <a href="http://www.bytemycode.com/snippets/snippet/284/1/" target="_blank">byteMyCode</a>.</div>');
