<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original: Paul Galloway (paulg@synergyx.com ) -->
<!-- Web Site: http://www.synergyx.com -->
<SCRIPT LANGUAGE="Javascript">
<!--
function dedupe_list()
{
var count = 0;
var mainlist = document.form1.mainlist.value;
mainlist = mainlist.replace(/\r/gi, "\n");
mainlist = mainlist.replace(/\n+/gi, "\n");
var listvalues = new Array();
var newlist = new Array();
<!-- STEP TWO: Copy this code into the BODY of your HTML document -->
<BODY>
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original: Paul Galloway (paulg@synergyx.com ) -->
<!-- Web Site: http://www.synergyx.com -->
<CENTER>
<FORM ACTION="" NAME="form1" ID="form1">
<TABLE BORDER=1 CELLPADDING=5 BORDERCOLOR="#FF0000" BGCOLOR="#FFFFFF">
<TR>
<TD>Paste list to be de-duped here<BR>(one value per line)<P><TEXTAREA NAME="mainlist" COLS=30 ROWS=20></TEXTAREA></TD>
</TR>
<TR><TD align="center"><input type="button" onClick="dedupe_list();" value="De-Dupe List!"></TD></TR>
</TABLE>
</center>
</FORM>