 function reposicionaMenu(){
	var pos = (document.body.scrollTop)?document.body.scrollTop:document.documentElement.scrollTop;
	document.getElementById("publicidadflotante").style.top = parseInt(pos + 10) + "px";
 }

onload = function(){
  if(document.getElementById && !window.getComputedStyle && document.getElementById("publicidadflotante"))
   {
	 document.getElementById("publicidadflotante").style.display="";
	 document.getElementById("publicidadflotante").style.position = "absolute";
	 //window.onscroll = reposicionaMenu;
   }
  else if(window.getComputedStyle && document.getElementById("publicidadflotante"))
   {
	 document.getElementById("publicidadflotante").style.display="";
     document.getElementById("publicidadflotante").style.left=document.getElementById("main_contenedorprincipal").offsetWidth + document.getElementById("publicidadflotante").offsetLeft + "px";
	 document.getElementById("publicidadflotante").style.position = "absolute";
     //window.onscroll = reposicionaMenu;   
   } 
}