1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<head>
<script language="JavaScript">
window.onload = function() {
document.getElementById('input').focus();
document.getElementById('sauveinput').value="";
document.getElementById('input').value="";
}
//var verif = window.setInterval(validation,10000000);
var verif = window.setInterval(validation,1800000); //toutes les 180sec
function validation()
{
document.getElementById('sauveinput').value=document.getElementById('input').value;
document.getElementById('autorefresh').value="TRUE";
document.getElementById('input').value="";
document.forms['form_parler'].submit();
}
function envoiemot(mot)
{
document.getElementById('input').value=mot;
document.forms['form_parler'].submit();
}
</script>
</head>
<body link="#336600"> |
Partager