// JavaScript Document
function topstr(s,m,n ){
var str=s;
if(s.length>n)
newstr=str.substring(m,n)+"...";
else
newstr=str;
document.write (newstr)
}