// full JS separation! function runad1001() { var css = ""; var html = "ERR012: NO CONTAINER ID"; function addCSS(cssCode) { var styleElement = document.createElement("style"); styleElement.type = "text/css"; if (styleElement.styleSheet) { styleElement.styleSheet.cssText = cssCode; } else { styleElement.appendChild(document.createTextNode(cssCode)); } document.getElementsByTagName("head")[0].appendChild(styleElement); } function addHTML(html) { document.body.innerHTML = html; } addCSS(css); var mynode = addHTML(html); // custom JS code! } runad1001();