код
скрипт тега предупреждения
Код:
<script> function addmod(str,from,internal){ var pos=0,pos2=0,newpos=0 if((pos=str.indexof("[mod]",from))==-1) return str; if((pos2=str.indexof("[/mod]"),pos+5)==-1) return str; newpos=str.indexof("[mod]",pos+5) if(newpos<pos2 && newpos!=-1) str=addmod(str,pos+5,true) if((pos2=str.indexof("[/mod]",pos+5))==-1) return str; str=str.substring(0,pos)+makemod(str.substring(pos+5,pos2))+str.substring(pos2+6,str.length) if( str.indexof("[mod]")!=-1 && internal==false) str=addmod(str,0,false) return str} function makemod(txt){ txt="<br><div style=\"margin: 0px; padding: 0px; background-color:#f1f1fd; border-left: 0px solid #6060ff; border-top: 0px dotted #000; border-right: 1px dotted #000; border-bottom: 1px dotted #000;\"><table cellpadding='0' cellspacing='0'><td align='middle' bgcolor='#6060ff' valign='center' width='8%'><font color='#ffffff' size='+3' style='font-family: times' title='предупреждение'><b> i </b></font></td></td><td valign='middle'>"+txt+"</td></table></div><br>" return txt} if(document.url.indexof("viewtopic.php")!=-1){ elm=document.getelementbyid("pun-main").getelementsbytagname("div") for(x in elm) if(elm[x].classname=="post-content"){ var post=elm[x] post.innerhtml=addmod(post.innerhtml,0,false)}} </script>