/* by  webmaster@enetplanet.com  */

function texter(s) {

var lim_space = s.lastIndexOf(' ');
var lim_newline = s.lastIndexOf("\n"); 
var lim;

if (lim_space > lim_newline) { lim = lim_space;} else { lim = lim_newline;};

var s = s.substring(lim + 1, s.length);

if (window.document.forms[2].wordsg.checked &&  s.length > 3) {
window.document.forms[2].mw.value =  s; 
window.document.forms[2].submit();
window.document.forms[0].ta.focus();
}

}





