
<!--
function openWIN(url,nome,W,H,OPT)
{
	HORZ = Math.ceil((screen.width - W) / 2);
	VERT = Math.ceil((screen.height - H) / 2);
	NOPT = (OPT==1) 
		? "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,"
		: "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,";
	window.open(url,nome,NOPT+"width="+W+",height="+H+",top="+VERT+",left="+HORZ);
};

function janela(pop)
{
     window.open(pop,"","resizable=yes,toolbar=no,status=no,menubar=no,scrollbars=yes,width=720,height=500")
}
function janelao(pop)
{
     window.open(pop,"","resizable=yes,toolbar=no,status=no,menubar=no,scrollbars=yes,width=810,height=500")
}


function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

/********************************************************************************************************************************************************************************
			BUG IE COM FLASH
*******************************************************************************************************************************************************************************/
var Browser =
{
	Detect:function ()
	{
		var agent	= navigator.userAgent.toLowerCase();

		this.IE		= agent.indexOf("msie")!=-1;
		this.Gecko	= agent.indexOf("gecko")!=-1;
		this.Opera	= agent.indexOf("opera")!=-1;
		this.Safari	= agent.search(/(konqueror|safari|khtml)/i)>-1;
		this.Other	= !this.IE && !this.Gecko && !this.Safari;
	}
}

Browser.Detect();

function GetFlashHtml(URL, TRANS, WIDTH, HEIGHT, BGCOLOR, SALIGN, FLASHVARS)
{
	var HTML = [];

					HTML.push('<object '+(Browser.IE ? ' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ' : '')+' type="application/x-shockwave-flash" data="'+ URL +'" '+(WIDTH ? ' width="'+ WIDTH +'"' : '')+' '+(HEIGHT ? ' height="'+ HEIGHT +'"' : '')+' '+(TRANS ? ' wmode="transparent"' : '')+' '+(BGCOLOR ? ' bgcolor="'+ BGCOLOR +'"' : '')+' '+(SALIGN ? ' salign="'+ SALIGN +'"' : '')+' '+(FLASHVARS ? ' FlashVars="'+ FLASHVARS +'"' : '')+' menu="false">');

	if(TRANS) 		HTML.push('<param name="wmode" 		value="transparent" />');
					HTML.push('<param name="menu" 		value="false" />');
	if(WIDTH)		HTML.push('<param name="width" 		value="'+ WIDTH +'" />');
	if(HEIGHT)		HTML.push('<param name="height" 	value="'+ HEIGHT +'" />');
	if(BGCOLOR)		HTML.push('<param name="bgcolor" 	value="'+ BGCOLOR +'" />');
	if(SALIGN)		HTML.push('<param name="salign" 	value="'+ SALIGN +'" />');
	if(FLASHVARS)	HTML.push('<param name="FlashVars" 	value="'+ FLASHVARS +'" />');
					HTML.push('<param name="movie" 		value="'+ URL +'" />');
					HTML.push('<param name="allowScriptAccess" value="sameDomain" /><param name="quality" value="high" />');
					HTML.push('</object>');


	var FINAL = HTML.join("");
	document.write(FINAL);
};
//-->