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_validateForm() { //v4.0
  var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
    if (val) { nm=val.name; if ((val=val.value)!="" && val!="DDD") {
      if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
        if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
      } else if (test!='R') { num = parseFloat(val);
        if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
        if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
          min=test.substring(8,p); max=test.substring(p+1);
          if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
    } } } else if (test.charAt(0) == 'R') errors += '* '+nm+'\n'; }
  } if (errors) alert('Todos os campos são de\npreenchimento obrigatório:\n\n'+errors);
  document.MM_returnValue = (errors == '');
}
function resetForm(a) {
	var q = window.confirm("Tem certeza que deseja apagar todo o formulário?");
	if (q) { document.getElementById(a).reset(); }
}
function checkTextfield(obj,c,t) {
  if (obj.value == c) if (obj) obj.value = t;
}
function iahresize(o, v) {
	if(v <= 630) { v = 630; }
	document.getElementById("flash").style.height = v + 340 + "px";
	document.getElementById(o).style.height = v + "px";
}
function iah(o) {
	if(navigator.appName.indexOf("Internet Explorer") > -1) { // IE
		var FT = function() {
			var valor = document.getElementById(o).contentWindow.document.body.scrollHeight+5;
			iahresize(o, valor);
		}
		setTimeout(function(){FT()},100);
	} else {
		var valor = document.getElementById(o).contentWindow.document.body.parentNode.offsetHeight + 5;
		iahresize(o, valor);
	}    
}
function MM_showHideLayers() { //v9.0
	var i,p,v,obj,args=MM_showHideLayers.arguments;
	for (i=0; i<(args.length-2); i+=3) 
	with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
	if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
	obj.visibility=v; }
}
function MM_effectAppearFade(targetElement, duration, from, to, toggle){
	Spry.Effect.DoFade(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
}
function enterBeifiur(){
	MM_showHideLayers('iframe','','show')
}
function getWidth(width){ if(document.body.clientWidth > width) { return "100%"; } else { return width+"px"; } }
function getHeight(height){ if(document.body.clientHeight > height) { return "100%"; } else { return height+"px"; } }
function setScrollIE(width, height) { document.body.scroll = (document.body.clientWidth < width || document.body.clientHeight < height)? "yes" : "yes"; } // set "no" in option if you want
function setFlashSize(id, width, height, fullw, fullh){
	if(fullw == true) { document.getElementById(id).style.width = getWidth(width); }
	if(fullh == true) { document.getElementById(id).style.height = getHeight(height); }
	setScrollIE(width, height);	
}
if(Browser == undefined){
	var Browser = { isIE: function(){ return (window.ActiveXObject && document.all && navigator.userAgent.toLowerCase().indexOf("msie") > -1  && navigator.userAgent.toLowerCase().indexOf("opera") == -1) ? true : false; } }
}
var Flash = function(movie, id, width, height, fullw, fullh, initParams){
	if(fullw == true || fullh == true) {
		window.onresize = function(){ setFlashSize(id, width, height, fullw, fullh) };
		setScrollIE(width, height);
	}
	this.html = "";
	this.attributes = this.params = this.variables = null;
	this.variables = new Array();
	this.attributes = {
		"classid": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",
		"codebase": "http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab#version=8,0,0,0",
		"type": "application/x-shockwave-flash"
	}
	this.params = { "pluginurl": "http://www.macromedia.com/go/getflashplayer_br" };
	if(movie) {
		this.addAttribute("data", movie);
		this.addParameter("movie", movie);
	}
	if(id && id != null) this.addAttribute("id", id);
	if(fullw == true) { fwidth = getWidth(width) } else { fwidth = width };
	if(fullh == true) { fheight = getHeight(height) } else { fheight = height };
	if(width) this.addAttribute("width", fwidth);
	if(height) this.addAttribute("height", fheight);
	if(initParams != undefined){ for(var i in initParams){ this.addParameter(i.toString(), initParams[i]); } }
}
Flash.version = "1.2b";
Flash.getObjectByExceptions = function(obj, excep){
	var tempObj = {};
	for(var i in obj){
		var inclui = true;
		for(var j=0; j<excep.length; j++)
			if(excep[j] == i.toString()) { inclui = false; break; };
		if(inclui) tempObj[i] = obj[i];
	}
	return tempObj;
}
Flash.prototype.addAttribute = function(prop, val){ this.attributes[prop] = val; }
Flash.prototype.addParameter = function(prop, val){ this.params[prop] = val; }
Flash.prototype.addVariable = function(prop, val){ this.variables.push([prop, val]); }
Flash.prototype.getFlashVars = function(){
	var tempString = new Array();
	for(var i=0; i<this.variables.length; i++)
		tempString.push(this.variables[i].join("="));
	return tempString.join("&");
}
Flash.prototype.toString = function(){
	this.params.flashVars = this.getFlashVars();
	if(Browser.isIE()){
		// IE
		this.html = "<ob" + "ject";
		var attr = Flash.getObjectByExceptions(this.attributes, ["type", "data"]);
		for(var i in attr) if(i.toString() != "extend") this.html += " " + i.toString() + " = \"" + attr[i] + "\"";
		this.html += "> ";
		var params = Flash.getObjectByExceptions(this.params, ["pluginurl", "extend"]);
		for(var i in params) if(i.toString() != "extend") this.html += "<param name=\"" + i.toString() + "\" value=\"" + params[i] + "\" /> ";
		this.html += " </obj" + "ect>";
	} else {
		// non-IE
		this.html = "<!--[if !IE]> <--> <obj" + "ect";
		var attr = Flash.getObjectByExceptions(this.attributes, ["classid", "codebase"]);
		for(var i in attr) if(i.toString() != "extend") this.html += " " + i.toString() + " = \"" + attr[i] + "\"";
		this.html += "> ";
		var params = Flash.getObjectByExceptions(this.params, ["extend"]);
		for(var i in params) if(i.toString() != "extend") this.html += "<param name=\"" + i.toString() + "\" value=\"" + params[i] + "\" /> ";
		this.html += " </obj" + "ect> <!--> <![endif]-->";
	}
	return this.html;
}
Flash.prototype.write = Flash.prototype.outIn = Flash.prototype.writeIn = function(w){
	if(typeof w == "string" && document.getElementById) var w = document.getElementById(w);
	if( w != undefined && w ) w.innerHTML = this.toString();
	else document.write( this.toString() );
}