//remove parasitos
if (window.parent!=self)
	parent.location.href = self.location.href;

 //must be executed after the browser has parsed the <BODY> tag!
  var ScrWidth = 0, ScrHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    ScrWidth = window.innerWidth;
    ScrHeight = window.innerHeight;
	ScrWidth-=17;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    //xxx gives error
    ScrWidth = document.documentElement.clientWidth;
    ScrHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    ScrWidth = document.body.clientWidth;
    ScrHeight = document.body.clientHeight;
  }

function onBodyResize() {

var flash_top= document.getElementById("flash_top_movie");
var flash_bottom= document.getElementById("flash_bottom_movie");

flash_top.setAttribute("width",'"'+ScrWidth+'"');
flash_top.setAttribute("height",'"'+(Math.floor(ScrWidth*0.281))+'"' );
flash_bottom.setAttribute("width",'"'+ScrWidth+'"');
flash_bottom.setAttribute("height",'"'+(Math.floor(ScrWidth*0.475))+'"' );

 }


//sample: IncludeJavaScript('js2.js');
function IncludeJavaScript(jsFile)
{
document.write('<script type="text/javascript" src="'
+ jsFile + '"></script>');
}
