You mean like this?
ChatA.net Request Price
ChatE.net Request Price
ChatID.com Request Price
EzChat.net Request Price
CopChat.com Request Price
BizChats.com Request Price
ChatCity.org Request Price
ChatClan.com Request Price
ChatFest.com Request Price
ChatPays.com Request Price
ChatTool.com Request Price
CorpChat.com Request Price
AudioChat.net Request Price
BoardChat.com Request Price
ChatDates.com Request Price
ChatGroup.org Request Price
ChatOnNet.com Request Price
ChatTooGa.com Request Price
ClassChat.com Request Price
EChateaux.com Request Price
BrokerChat.com Request Price
ChatAccess.com Request Price
ChatGroups.org Request Price
ChatPlanet.org Request Price
ChatsPorts.com Request Price
ChatWorlds.com Request Price
ClientChat.com Request Price
AdultsChats.com Request Price
ChatContact.com Request Price
ChatterFest.com Request Price
FreeChatCam.com Request Price
ChatsHopping.com Request Price
ChitchatClub.com Request Price
FreeChatRoom.net Request Price
CelebrityChat.net Request Price
ChatUnlimited.com Request Price
ChatWorldwide.com Request Price
CyberChatCafe.com Request Price
DutchAthletes.com Request Price
ChatterGalErie.com Request Price
FamilyChatrooms.com Request Price
FrenchAttorneys.com Request Price
BeachAttractions.com Request Price
ChateauChampagne.com Request Price
Adult-Chat-Network.com Request Price
just wrote this in javascript, gets bogged down over about 50kb.
<html>
<head>
<title></title>
</head>
<body>
<script language="javascript">
function sort() {
changes = true
while (changes) {
tfile = document.form1.thefile.value
lfile = tfile.length
line2 = "a"
sfile = ""
changes = false
while((line2.length) > 0) {
line1 = tfile.substring(0, tfile.indexOf('\n'))
tfile = tfile.substring(tfile.indexOf('\n')+1, lfile)
line2 = tfile.substring(0, tfile.indexOf('\n'))
if (line1.length > line2.length) {
sfile+= line2
efile = tfile.substring(tfile.indexOf('\n'), lfile)
tfile = line1 + efile
if (line2.length > 0) {
changes = true
}
}
else {
sfile+= line1
}
}
document.form1.thefile.value = sfile + tfile
}
}
</script>
<form name="form1">
<textarea rows=20 cols=100 name="thefile">
copy file
here and
press
sort
</textarea>
</form>
<input type="submit" value="sort" onclick="sort()">
</body>
</html>