//create onDomReady Event
      window.onDomReady = initReady;
 
      // Initialize event depending on browser
      function initReady(fn){
      	//W3C-compliant browser
      	if(document.addEventListener) {
          document.addEventListener("DOMContentLoaded", fn, false);
        }
      	//IE
      	else {
          document.onreadystatechange = function(){readyState(fn)}
        }
      }
 
      //IE execute function
      function readyState(func){
      	// DOM is ready
      	if(document.readyState == "interactive" || document.readyState == "complete"){
      		func();
      	}
      }
	  
	//do when DOM is ready
	function onReady(){
	
		var newDiv = document.createElement("div");
		var assing = document.getElementById("header");
		assing.appendChild(newDiv);
		
		newDiv.id = "additionalHeaderLink";
		
		document.getElementById("additionalHeaderLink").innerHTML = "<span style='position:absolute; right:0px; text-align:center; top:30px; z-index:200;'><a href=' javascript:inlinelink(\"http://www.penguin.co.uk/\", \"external\", \"Disclaimer\");' ><img src='/cartenoire/images/uken1/headers/pinguin_logo.gif' title='pengyinlogo' alt='pengyinlogo'></a></span>";
						
	}

	  
	  
	  //execute as soon as DOM is loaded
		window.onDomReady(onReady);
 









