function disableInlineEdit(cookieName) { // Ablaufdatum des Cookies einfach in die Vergangenheit temp = ''; document.cookie = cookieName + "=" + temp + "; expires=Thu, 01-Jan-70 00:00:01 GMT;"; document.location.reload(); } /* PopUp fuer Modul Link */ function openLinkWindow(link, breite, hoehe, left, top, scrollbars, resizable, status) { var linkPopUp = window.open(link, 'LinkPopUp', 'toolbar=no,scrollbars='+scrollbars+',status='+status+',menubar=no,location=no,resizable='+resizable+',width='+breite+',height='+hoehe+',left='+left+',top='+top); if (linkPopUp.opener == null) linkPopUp.opener = self; linkPopUp.focus(); } // Notwendige Funktion zur Umsetzung der Paging-Klasse im Frontend mit POST-Werten function NFYPagingSubmit(FormName,costart_val) { window.document.forms[FormName].elements['costart'].value=costart_val; window.document.forms[FormName].submit(); } // Werbebanner ein / ausblenden function showHideAdLayer() { var i,p,v,obj,args=showHideAdLayer.arguments; for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2]; if (obj.style) { obj=obj.style; v=(v=='block')?'block':(v=='none')?'none':v; } obj.display=v; } }