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
| function postShout()
{
var obj = document.forms['REPLIER'];
if(document.forms['REPLIER_bis'])
obj = document.forms['REPLIER_bis'];
if(obj.elements['Post'].value.length<2)
alert(lang_msg_msg);
else
{
if(stop==0) clearTimeout(timer);
/* Mise a jours */
if(filtre == '1')
affiche(ipb_base_url+'act=module&module=shoutbox&cmd=post&Post='+obj.elements['Post'].value+'&type='+type);
else
affiche(sb_base_url+'msg='+obj.elements['Post'].value+'&type='+type+'&sb_time='+sb_time+'&sb_color='+sb_color);
/* Effacement du message */
obj.elements['Post'].value = '';
/* Prepare l'initialistion */
if(stop==0) timer=setTimeout("actuShout(0)",delay*1000);
}
valid=false;
if(bis && document.forms['REPLIER_tmp'])
{
obj.name = 'REPLIER_bis';
document.REPLIER_tmp.name = 'REPLIER';
document.REPLIER_tmp = false;
}
} |
Partager