//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 = "additionalHeaderText";
		/*
		document.getElementById("additionalHeaderText").style.position = "absolute";
		document.getElementById("additionalHeaderText").style.top = "80px";
		document.getElementById("additionalHeaderText").style.right = "5px";
		document.getElementById("additionalHeaderText").style.textAlign = "center";
		document.getElementById("additionalHeaderText").style.color = "#333333";
		document.getElementById("additionalHeaderText").style.zIndex = 200;
		document.getElementById("additionalHeaderText").style.width = "auto";
		*/
		document.getElementById("additionalHeaderText").innerHTML = "<span style='color:#FFFFFF; font-family:tahoma; font-size:10px; font-weight:bold; position:absolute; right:10px; text-align:center; top:80px; width:auto; z-index:200;'>TASSIMO SERVICIO AL CONSUMIDOR 901 888 037</span>";
						
	}

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










