function init() {  
	
		var styles = document.createElement('style');
		styles.setAttribute('type', 'text/css');

		var newStyle = document.createTextNode('\n<!--\nbody {\nbackground-color: yellow;}\n-->\n');  	
    	styles.appendChild(newStyle);
	    
		var headRef = document.getElementsByTagName('head')[0];
        headRef.appendChild(styles); 
        }

window.onload = init();
