                function doOnload() {setTimeout("downloadComponents()", 1000);}
                window.onload = doOnload;
                function downloadComponents() { downloadCSS("/css/css-import.php?css1=noah"); downloadJS("/javascript/js-import.php"); }
                function downloadCSS(url) { var elem = document.createElement("link"); elem.rel = "stylesheet"; elem.type = "text/css"; elem.href = url; document.body.appendChild(elem); }    
                function downloadJS(url) { var elem = document.createElement("script"); elem.src = url; document.body.appendChild(elem); }