ns4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;

winW = (ns4)? window.innerWidth  : document.body.offsetWidth;
winH = (ns4)? window.innerHeight : document.body.offsetHeight;


function extend(){
	window.moveTo(0,0);
			 if (document.all) {
				 top.window.resizeTo(screen.availWidth,screen.availHeight);
				 }
			 else if (document.layers||document.getElementById) {
				 if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
				 top.window.outerHeight = screen.availHeight;
				 top.window.outerWidth = screen.availWidth;
			 }
		 }
}

function redimensionaFlash(){
	var anchuraFlash, alturaFlash;
	if (screen.width <1024){
			anchuraFlash=650;
			alturaFlash=420;
		}
	else{
		anchuraFlash=990;
		alturaFlash=640;
		}

	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+anchuraFlash+'" height="'+alturaFlash+'" id="index" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="swf/index.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#000000" />');
	document.write('<embed src="swf/index.swf" quality="high" bgcolor="#000000" width="'+anchuraFlash+'" height="'+alturaFlash+'" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');

}
