/*gobal vars*/
var IE = document.all?true:false
window.onresize = resize;
/*funcs*/
function resize(){
  if (IE) {
    windowWidth = document.body.clientWidth+document.documentElement.scrollLeft;
  } else {
    windowWidth = window.innerWidth+window.pageXOffset;
  }
  var width = windowWidth * .95;
  $('footer').style.width = width+"px";
  $('boxA').style.width = width+"px";
  width = $('hdr').getWidth();
  height = width * 0.195;
  $('main').style.width = width - 445 + "px";
  //swf replace
  $('imgTopo').style.width = width + "px";
  $('imgTopo').style.height = height + "px";
  var so = new SWFObject("mms://stream.radio.com.pt/roli-enc-475", "hdr", width, height, "8");
  so.write("flash");
  $('hdr').style.height = height + "px";
  var soA = new SWFObject("banner/vendaBanner.swf", "flashBannerA", "200", "200", "8");
  soA.write("flashBannerA");
}
function openajax(filename){
  $('main').innerHTML = "A carregar...";
  var url = "./"+filename;
  new Ajax.Request(url, {
    method: 'get',
    onSuccess: function(transport) {
      $('main').innerHTML = transport.responseText;
    }
  });
  return false;
}
