function content_help(sRealKey) { if (sRealKey.length == 0) { return; } var sKey = sRealKey; if (sRealKey.charAt(0) != '_') { var aKey = new Array(); aKey = sRealKey.split('.'); if (aKey.length == 1) { sKey = sCurrentModule + '.' + sRealKey; } else { if (aKey[0] != sCurrentModule) { alert("Error #666"); return; } } } try { //HelpWindow = window.open('http://www.mondayworks.com/help/de/' + sKey + '.html', "ContentHelpWindow", "scrollbars=yes,menubar=no,resizable=0,location=no,width=500,height=400") ; //HelpWindow.focus(); Tip('', WIDTH, 300, PADDING, 7, BGCOLOR, "#ffffff", BORDERCOLOR, "#D1D1D1", FONTCOLOR, "#484848", TITLE, 'Hinweis', SHADOW, false, FADEIN, 100, FADEOUT, 100, STICKY, 1, CLOSEBTN, true, CLICKCLOSE, true); } catch(err) { window.alert("Window was Blocked by your popup blocker"); } }