function Mail() {
Entry2 = document.TextForm.Entry2.value;
var to = prompt("To Whom:",'');
if (!to) { 
alert('Please enter an email address if you wish to continue.') 
return false 
} 
else { 
document.to.value; 
} 
var sb='Entry2';
var ms=Entry2;
document.mail.action='mailto:'+to+'?no_signature=true&subject=Clipboard results';
document.mail.Entry2.value=ms;
document.mail.submit();
document.mail.Entry2.reset();
document.mail.reset();
to="";
sb="";
ms="";
}
function spell() { 
var word = prompt("Enter a word",""); 
if (!word || null) { 
    alert('Please enter a word to lookup if you wish to continue.') 
    return false 
} 
else { 
    document.web.va.value = ""+word+""; 
    document.web.submit(); 
 } 
} 
d = document; 
function SR(){ 
S = prompt("Search for What?...CASE SENSITIVE!",""); 
if (!S) { 
alert('Please enter a word to replace if you wish to continue.') 
return false 
} 
else { 
document.S.value; 
} 
R = prompt("Replace it with What?...",""); 
if (!R) { 
alert('Please enter a word to replace if you wish to continue.') 
return false 
} 
else { 
document.R.value; 
} 
d.TextForm.Entry2.value = d.TextForm.Entry2.value.split(S).join(R);
alert("Replaced all instances of:\n "+S);  
} 
function KeyP() {
setTimeout("Sta()", 1000);
}
function Sta() {
leng = document.TextForm.Entry2.value.length;
document.TextForm.size.value = leng;
}