function show_myfiles() {// выход из функции, если она уже вызываласьif (arguments.callee.done) return;// флаг, чтобы не запускать функцию дваждыarguments.callee.done = true;var ElementPun = document.getElementById('pun-status');var ElementPunP = ElementPun.getElementsByTagName('p')[0];var ElementSpanF = ElementPunP.getElementsByTagName('span')[1];var Depositl = document.createElement('span');Depositl.innerHTML = '<strong><a href="http://rolevka.ru/new.php" style="color:red;">[Создать форум]</a></strong>';ElementPunP.insertBefore(Depositl, ElementSpanF);}/* for Mozilla */if (document.addEventListener) {	document.addEventListener("DOMContentLoaded", show_myfiles, false);}/* for Internet Explorer *//*@cc_on @*//*@if (@_win32)	document.write("<script id=__ie_onload defer src=javascript:void(0)><\/script>");	var script = document.getElementById("__ie_onload");	script.onreadystatechange = function() {		if (this.readyState == "complete") {			show_myfiles(); // call the onload handler		}	};/*@end @*//* for Safari */if (/WebKit/i.test(navigator.userAgent)) { // sniff	var _timer = setInterval(function() {		if (/loaded|complete/.test(document.readyState)) {			show_myfiles(); // call the onload handler		}	}, 10);}/* for other browsers */window.onload = show_myfiles;