 
/**
  * This method apped the image in the midle of the text y a news.
  *
  **/ 
function appendNewsImage(){
   
    try{
         if( (window.location.href.indexOf("activeCountry.html") > 0 ) || window.location.href.indexOf("activeCompetition.html")  > 0){         
               document.getElementById("content2").style.width = "715px";
         }    

         if(document.getElementById("midVideo") == null || document.getElementById("midVideo") == null){
               document.getElementById("videoshow").innerHTML = "";
               return;
         }      
         document.getElementById("videoshow").innerHTML = document.getElementById("midVideo").innerHTML ;
    }catch(E){}
    

}