function onLoad(x,y,htmlString){window.onload=function(){move(x,y,htmlString);};}
function movecall(x,y,htmlString){onLoad(x,y,htmlString);};
function move(x,y,htmlString){try{var html=document.getElementById(y).innerHTML;if(html.toLowerCase().indexOf(x.toLowerCase())!=-1){var substr=html.toLowerCase().indexOf(x.toLowerCase());document.getElementById(y).innerHTML=html.substring(0,substr-1);document.getElementById(htmlString).innerHTML=html.substring(substr+x.length);}}catch(e){}finally{};};
