function doact(d)
{
var doc = eval("document.readme."+d);
var cre = d;
cp = doc.createTextRange();
cp.execCommand("RemoveFormat");
doc.focus();
doc.select();
cp.execCommand("Copy");
alert("Text Copied " +doc );
}

function highlight() {
document.readme.text.select();
document.readme.text.execCommand("RemoveFormat"); 
document.readme.text.focus();
}
