if (top.frames.length > 0) {
   top.location.href=self.location;
}
function VentanaX() {
         if (window.innerWidth) {
            return window.innerWidth;
         } else if (document.body && document.body.offsetWidth) {
            return document.body.offsetWidth;
         } else {
            return screen.width;
         }
}
function VentanaY() {
         if (window.innerHeight) {
            return window.innerHeight;
         } else if (document.body && document.body.offsetHeight) {
            return document.body.offsetHeight;
         } else {
            return screen.Height;
         }
}
function getVerticalPos() {
         if (document.body.scrollTop) {
            return document.body.scrollTop;
         } else if (window.pageYOffset) {
            return window.pageYOffset
         } else {
            return 0;
         }
}
function placeItems() {
         document.getElementById('head').style.width=VentanaX()-20 + 'px';
         document.getElementById('ola').style.left=VentanaX()-320 + 'px';
         if (navigator.appName == "Microsoft Internet Explorer") {
            document.getElementById('ola').style.top=VentanaY()-324+getVerticalPos() + 'px';
         } else {
            document.getElementById('ola').style.top=VentanaY()-304+getVerticalPos() + 'px';
         }
         window.setTimeout('placeItems()',10);
}