<html dir="rtl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body>
<ul id="raw_data">
	<li>
		hi
	</li>
	<li>
		how r u?
	</li>
	<li>
		r u ok?
	</li>
</ul>
<script>
function replacer(str,searchStr,insteadStr){
	do{
		differStr=str;
		str=str.replace(searchStr,insteadStr);
	}while(differStr!=str);
	alert(str);
}
</script>
<input type="btn" onclick="replacer('farshadfarshad','shad','far');">
</body>
</html>









