così funziona il copia.. non so perchè non va l'incolla
codice:
<SCRIPT language="JAVASCRIPT" type="text/JAVASCRIPT">
function Select()
{
document.send.informazioni.select();
}
function Copia()
{
document.execCommand("Copy");
}
function Incolla()
{
document.execCommand("Paste");
}
function FAQ() {
var domanda = document.send.domanda.value;
var informazioni = document.send.informazioni.value;
if ((domanda == "") || (domanda == "undefined"))
{
alert("QUESTION NOT FOUND");
document.send.domanda.focus();
}
else {
location.href = "mailto:" + "?subject=" + "&body=" + "QUESTION" + " " + domanda + " " + "INFORMAZIONI" + " " + informazioni;
}
}
</SCRIPT>