/* COMECO EXIBIR FLASHS */
function exibe_flash(swf,width,height) {
	var flash = "";
	flash += '<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'" id="charge">';
	flash += '<param name="movie" value="'+swf+'" />';
	flash += '<param name="wmode" value="transparent" />';
	flash += '<param name="quality" value="high" />';
	flash += '<embed src="'+swf+'" swliveconnect="true" name="charge" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>';
	flash += '</object>';
	document.write(flash);
}
/* FIM EXIBIR FLASHS */



/* COMECO NOVIDADES DEFAULT */
var featuredcontentslider={
ajaxloadingmsg: '<div style="margin: 20px 0 0 20px"><img src="Imagens/ImagemLoading.gif"> Fetching slider Contents. Please wait...</div>',
bustajaxcache: true,
enablepersist: true,

settingcaches: {},

jumpTo:function(fcsid, pagenumber){
	this.turnpage(this.settingcaches[fcsid], pagenumber)
},

ajaxconnect:function(setting){
	var page_request = false
	if (window.ActiveXObject){
		try {
		page_request = new ActiveXObject("Msxml2.XMLHTTP")
		} 
		catch (e){
			try{
			page_request = new ActiveXObject("Microsoft.XMLHTTP")
			}
			catch (e){}
		}
	}
	else if (window.XMLHttpRequest)
		page_request = new XMLHttpRequest()
	else
		return false
	var pageurl=setting.contentsource[1]
	page_request.onreadystatechange=function(){
		featuredcontentslider.ajaxpopulate(page_request, setting)
	}
	document.getElementById(setting.id).innerHTML=this.ajaxloadingmsg
	var bustcache=(!this.bustajaxcache)? "" : (pageurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
	page_request.open('GET', pageurl+bustcache, true)
	page_request.send(null)
},

ajaxpopulate:function(page_request, setting){
	if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
		document.getElementById(setting.id).innerHTML=page_request.responseText
		this.buildpaginate(setting)
	}
},

buildcontentdivs:function(setting){
	var alldivs=document.getElementById(setting.id).getElementsByTagName("div")
	for (var i=0; i<alldivs.length; i++){
		if (this.css(alldivs[i], "contentdiv", "check")){
			setting.contentdivs.push(alldivs[i])
				alldivs[i].style.display="none"
		}
	}
},

buildpaginate:function(setting){
	this.buildcontentdivs(setting)
	var sliderdiv=document.getElementById(setting.id)
	var pdiv=document.getElementById("paginate-"+setting.id)
	var phtml=""
	var toc=setting.toc
	var nextprev=setting.nextprev
	if (typeof toc=="string" && toc!="markup" || typeof toc=="object"){
		for (var i=1; i<=setting.contentdivs.length; i++){
			phtml+='<a href="#'+i+'" class="toc">'+(typeof toc=="string"? toc.replace(/#increment/, i) : toc[i-1])+'</a> '
		}
		phtml=(nextprev[0]!=''? '<a href="#prev" class="prev">'+nextprev[0]+'</a> ' : '') + phtml + (nextprev[1]!=''? '<a href="#next" class="next">'+nextprev[1]+'</a>' : '')
		pdiv.innerHTML=phtml
	}
	var pdivlinks=pdiv.getElementsByTagName("a")
	var toclinkscount=0
	for (var i=0; i<pdivlinks.length; i++){
		if (this.css(pdivlinks[i], "toc", "check")){
			if (toclinkscount>setting.contentdivs.length-1){
				pdivlinks[i].style.display="none"
				continue
			}
			pdivlinks[i].setAttribute("rel", ++toclinkscount)
			pdivlinks[i][setting.revealtype]=function(){
				featuredcontentslider.turnpage(setting, this.getAttribute("rel"))
				return false
			}
			setting.toclinks.push(pdivlinks[i])
		}
		else if (this.css(pdivlinks[i], "prev", "check") || this.css(pdivlinks[i], "next", "check")){
			pdivlinks[i].onclick=function(){
				featuredcontentslider.turnpage(setting, this.className)
				return false
			}
		}
	}
	this.turnpage(setting, setting.currentpage, true)
	if (setting.autorotate[0]){
		pdiv[setting.revealtype]=function(){
			featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
		}
		sliderdiv["onclick"]=function(){
			featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
		}
		setting.autorotate[1]=setting.autorotate[1]+(1/setting.enablefade[1]*50)
	 this.autorotate(setting)
	}
},

urlparamselect:function(fcsid){
	var result=window.location.search.match(new RegExp(fcsid+"=(\\d+)", "i"))
	return (result==null)? null : parseInt(RegExp.$1)
},

turnpage:function(setting, thepage, autocall){
	var currentpage=setting.currentpage
	var totalpages=setting.contentdivs.length
	var turntopage=(/prev/i.test(thepage))? currentpage-1 : (/next/i.test(thepage))? currentpage+1 : parseInt(thepage)
	turntopage=(turntopage<1)? totalpages : (turntopage>totalpages)? 1 : turntopage
	if (turntopage==setting.currentpage && typeof autocall=="undefined")
		return
	setting.currentpage=turntopage
	setting.contentdivs[turntopage-1].style.zIndex=++setting.topzindex
	this.cleartimer(setting, window["fcsfade"+setting.id])
	setting.cacheprevpage=setting.prevpage
	if (setting.enablefade[0]==true){
		setting.curopacity=0
		this.fadeup(setting)
	}
	if (setting.enablefade[0]==false){
		setting.contentdivs[setting.prevpage-1].style.display="none"
		setting.onChange(setting.prevpage, setting.currentpage)
	}
	setting.contentdivs[turntopage-1].style.visibility="visible"
	setting.contentdivs[turntopage-1].style.display="block"
	if (setting.prevpage<=setting.toclinks.length)
		this.css(setting.toclinks[setting.prevpage-1], "selected", "remove")
	if (turntopage<=setting.toclinks.length)
		this.css(setting.toclinks[turntopage-1], "selected", "add")
	setting.prevpage=turntopage
	if (this.enablepersist)
		this.setCookie("fcspersist"+setting.id, turntopage)
},

setopacity:function(setting, value){
	var targetobject=setting.contentdivs[setting.currentpage-1]
	if (targetobject.filters && targetobject.filters[0]){
		if (typeof targetobject.filters[0].opacity=="number")
			targetobject.filters[0].opacity=value*100
		else
			targetobject.style.filter="alpha(opacity="+value*100+")"
	}
	else if (typeof targetobject.style.MozOpacity!="undefined")
		targetobject.style.MozOpacity=value
	else if (typeof targetobject.style.opacity!="undefined")
		targetobject.style.opacity=value
	setting.curopacity=value
},


fadeup:function(setting){
	if (setting.curopacity<1){
		this.setopacity(setting, setting.curopacity+setting.enablefade[1])
		window["fcsfade"+setting.id]=setTimeout(function(){featuredcontentslider.fadeup(setting)}, 50)
	}
	else{
		if (setting.cacheprevpage!=setting.currentpage)
			setting.contentdivs[setting.cacheprevpage-1].style.display="none"
		setting.onChange(setting.cacheprevpage, setting.currentpage)
	}
},

cleartimer:function(setting, timervar){
	if (typeof timervar!="undefined"){
		clearTimeout(timervar)
		clearInterval(timervar)
		if (setting.cacheprevpage!=setting.currentpage){
			setting.contentdivs[setting.cacheprevpage-1].style.display="none"
		}
	}
},

css:function(el, targetclass, action){
	var needle=new RegExp("(^|\\s+)"+targetclass+"($|\\s+)", "ig")
	if (action=="check")
		return needle.test(el.className)
	else if (action=="remove")
		el.className=el.className.replace(needle, "")
	else if (action=="add")
		el.className+=" "+targetclass
},

autorotate:function(setting){
 window["fcsautorun"+setting.id]=setInterval(function(){featuredcontentslider.turnpage(setting, "next")}, setting.autorotate[1])
},

getCookie:function(Name){ 
	var re=new RegExp(Name+"=[^;]+", "i");
	if (document.cookie.match(re))
		return document.cookie.match(re)[0].split("=")[1]
	return null
},

setCookie:function(name, value){
	document.cookie = name+"="+value

},


init:function(setting){
	var persistedpage=this.getCookie("fcspersist"+setting.id) || 1
	var urlselectedpage=this.urlparamselect(setting.id)
	this.settingcaches[setting.id]=setting
	setting.contentdivs=[]
	setting.toclinks=[]
	setting.topzindex=0
	setting.currentpage=urlselectedpage || ((this.enablepersist)? persistedpage : 1)
	setting.prevpage=setting.currentpage
	setting.revealtype="on"+(setting.revealtype || "click")
	setting.curopacity=0
	setting.onChange=setting.onChange || function(){}
	if (setting.contentsource[0]=="inline")
		this.buildpaginate(setting)
	if (setting.contentsource[0]=="ajax")
		this.ajaxconnect(setting)
}

}
/* FIM NOVIDADES DEFAULT */



/* COMECO FOCAR CAMPO */
function Focar(elementID) {
	document.getElementById(elementID).focus();
}
/* FIM FOCAR CAMPO */



/* COMECO FORMATAR CAMPOS */
function FormataCampo(Formulario, Filtro) {
	var I = Formulario.value.length;
	var Saida = Filtro.substring(0,1);
	var Texto = Filtro.substring(I)
	
	if (Texto.substring(0,1) != Saida) {
		Formulario.value += Texto.substring(0,1);
	}
}
/* FIM FORMATAR CAMPOS */



/* COMECO SOMENTE NUMEROS */
function SomenteNumeros(Evento) {
	var CaractereCodigo = (Evento.which) ? Evento.which : event.keyCode;
	return (CaractereCodigo>=48 && CaractereCodigo<=57 || CaractereCodigo==8);
}
/* FIM SOMENTE NUMEROS */



/* COMECO FORMATAR MOEDA */
addEvent = function(o, e, f, s){
	var r = o[r = "_" + (e = "on" + e)] = o[r] || (o[e] ? [[o[e], o]] : []), a, c, d;
	r[r.length] = [f, s || o], o[e] = function(e){
		try{
			(e = e || event).preventDefault || (e.preventDefault = function(){e.returnValue = false;});
			e.stopPropagation || (e.stopPropagation = function(){e.cancelBubble = true;});
			e.target || (e.target = e.srcElement || null);
			e.key = (e.which + 1 || e.keyCode + 1) - 1 || 0;
		}catch(f){}
		for(d = 1, f = r.length; f; r[--f] && (a = r[f][0], o = r[f][1], a.call ? c = a.call(o, e) : (o._ = a, c = o._(e), o._ = null), d &= c !== false));
		return e = null, !!d;
    }
};

removeEvent = function(o, e, f, s){
	for(var i = (e = o["_on" + e] || []).length; i;)
		if(e[--i] && e[i][0] == f && (s || o) == e[i][1])
			return delete e[i];
	return false;
};

function FormataMoeda(o, n, dig, dec){
	o.c = !isNaN(n) ? Math.abs(n) : 2;
	o.dec = typeof dec != "string" ? "," : dec, o.dig = typeof dig != "string" ? "." : dig;
	addEvent(o, "keypress", function(e){
		if(e.key > 47 && e.key < 58){
			var o, s, l = (s = ((o = this).value.replace(/^0+/g, "") + String.fromCharCode(e.key)).replace(/\D/g, "")).length, n;
			if(o.maxLength + 1 && l >= o.maxLength) return false;
			l <= (n = o.c) && (s = new Array(n - l + 2).join("0") + s);
			for(var i = (l = (s = s.split("")).length) - n; (i -= 3) > 0; s[i - 1] += o.dig);
			n && n < l && (s[l - ++n] += o.dec);
			o.value = s.join("");
		}
		e.key > 30 && e.preventDefault();
	});
}
/* FIM FORMATAR MOEDA */



/* COMECO OCULTAR NOTIFICACOES */
function FecharAviso() {
	document.getElementById("Aviso").style.display="none"
}
/* FIM OCULTAR NOTIFICACOES */



/* COMECO COMBOBOX */
function ComboAuto(targ,selObj,restore) {
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	
	if (restore) selObj.selectedIndex=0;
}
/* FIM COMBOBOX */



/* COMECO CONFIRMAR */
function Confirmar(Questao) {
	var agree=confirm(Questao);
	
	if (agree)
		return true;
	else
		return false;
}
/* FIM CONFIRMAR */



/* COMECO XML */
try{
    xmlhttp = new XMLHttpRequest();
}catch(ee){
    try{
        xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    }catch(e){
        try{
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        }catch(E){
            xmlhttp = false;
        }
    }
}
/* FIM XML */



/* COMECO BUSCA CEP */
function BuscaCEP(CEP,Tipo) {
	if (Tipo == 'Comercial') {
		var c_CEP = document.getElementById("CepComercial")
		var c_End = document.getElementById("EnderecoComercial")
		var c_Bai = document.getElementById("BairroComercial")
		var c_Est = document.getElementById("EstadoComercial")
		var c_Cid = document.getElementById("CidadeComercial")
	} else {
		var c_CEP = document.getElementById("Cep")
		var c_End = document.getElementById("Endereco")
		var c_Bai = document.getElementById("Bairro")
		var c_Est = document.getElementById("Estado")
		var c_Cid = document.getElementById("Cidade")
	}
	c_CEP.value=' Carregando... ';
	c_End.value=' Carregando... ';
	c_Bai.value=' Carregando... ';
	c_Est.value=' Carregando... ';
	c_Cid.value=' Carregando... ';
	c_CEP.style.color='#FF0000';
	c_End.style.color='#FF0000';
	c_Bai.style.color='#FF0000';
	c_Est.style.color='#FF0000';
	c_Cid.style.color='#FF0000';
	c_CEP.readOnly=true;
	c_End.readOnly=true;
	c_Bai.readOnly=true;
	c_Est.readOnly=true;
	c_Cid.readOnly=true;
	
	xmlhttp.open("GET", "Cadastro.asp?Action=BuscaCEP&CEP="+CEP,true);
	
	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4){
			c_CEP.value='';
			c_End.value='';
			c_Bai.value='';
			c_Est.value='';
			c_Cid.value='';
			c_CEP.readOnly=false;
			c_End.readOnly=false;
			c_Bai.readOnly=false;
			c_Est.readOnly=false;
			c_Cid.readOnly=false;
			c_CEP.style.color='#000000';
			c_End.style.color='#000000';
			c_Bai.style.color='#000000';
			c_Est.style.color='#000000';
			c_Cid.style.color='#000000';
			
			var aDados=eval((xmlhttp.responseText))
			
			c_CEP.value=aDados[1];
			c_End.value=aDados[0];
			c_Bai.value=aDados[2];
			c_Est.value=aDados[4];
			c_Cid.value=aDados[3];
			
			if (c_CEP.value == '') {c_CEP.value=CEP}
			
			BuscaUF(aDados[4],aDados[3],Tipo);
		}
	}
	
	xmlhttp.send(null)
}

function BuscaUF(UF,Cid,Tipo) {
	if (Tipo == 'Comercial') {
		var c = document.getElementById("CidadeComercial")
	} else {
		var c = document.getElementById("Cidade")
	}
	c.style.color='#FF0000';
	
	while(c.options.length>0)c.options[0]=null
	c.options[0]=new Option(" Carregando cidades... "," Carregando cidades... ")
	
	xmlhttp.open("GET", "Cadastro.asp?Action=BuscaUF&UF="+UF,true);
	
	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4){
//			var c=document.getElementById("Cidade")
			
			while(c.options.length>0)c.options[0]=null
			
			var aCidades=eval((xmlhttp.responseText))
			
			for(var i=0;i<aCidades.length;i++){
				aCidades[i]=unescape(aCidades[i])
				var splitCidades = aCidades[i].split("|",2);
				c.options[c.options.length]=new Option(splitCidades[1],splitCidades[0])
				
				if (Cid == splitCidades[0]) {
					c.options[i].selected=true;
				}
			}
			c.style.color='#000000';
		}
	}
	
	xmlhttp.send(null)
}
/* FIM BUSCA CEP */



/*  */
function BannerClique(Caminho, BnrInicio) {
	var Caminho = Caminho;
	var BnrInicio = BnrInicio;
	
	xmlhttp.open("GET", "Banners.asp?Link="+ Caminho +"&id="+Math.random(),true);
	
	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4 && BnrInicio=='Sim'){
			var Concluido = xmlhttp.responseText;
		}
	}
	
	xmlhttp.send(null)
}
/*  */



/* COMECO GERENCIA SESSOES */
function CriaSessao(Nome, Valor){
	document.cookie = Nome +"="+ Valor;
}

function ChecaSessao(Nome) {
	var re=new RegExp(Nome+"=[^;]+", "i")
	if (document.cookie.match(re))
		return document.cookie.match(re)[0].split("=")[1]
	return null
}

function PuxaInfo() {
	if (ChecaSessao('Cid') != null) {
		setTimeout("BuscaUF(ChecaSessao('Est'),ChecaSessao('Cid'),'');",1000);
	}
	
	if (ChecaSessao('CidCom') != null) {
		setTimeout("BuscaUF(ChecaSessao('EstCom'),ChecaSessao('CidCom'),'Comercial');",2000);
	}

}
/* FIM GERENCIA SESSOES */



/* COMECO CODIGO SEGURANCA */
function GeraCodigo() {
	var c = document.getElementById("Codigo")
	var CodigoCarregando = new Image();
	
	CodigoCarregando.src = "Imagens/Codigo_Carregando.gif"; 
	c.src=CodigoCarregando.src;
	
	xmlhttp.open("GET", "Cadastro.asp?Action=GeraCodigo&id="+Math.random(),true);
	
	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4){
			var a=eval((xmlhttp.responseText))
			var CodigoNovo = new Image();
			
			CodigoNovo.src = a[0]; 
			c.src=CodigoNovo.src;
		}
	}
	
	xmlhttp.send(null)
}
/* FIM CODIGO SEGURANCA */


/* COMECO ENVIANDO DADOS */
function pegaMedidas(rolagem){
	var larguraPag, alturaPag;
	if (self.innerHeight) {
		larguraPag = self.innerWidth;
		alturaPag = self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientHeight) {
		larguraPag = document.documentElement.clientWidth;
		alturaPag = document.documentElement.clientHeight;
	} else if (document.body) {
		larguraPag = document.body.clientWidth;
		alturaPag = document.body.clientHeight;
	}
	if(rolagem){
		var rolagemH, rolagemV;
		
		if (window.innerHeight && window.scrollMaxY) {
			rolagemH = document.body.scrollWidth;
			rolagemV = window.innerHeight + window.scrollMaxY;
		} else if (document.body.scrollHeight > document.body.offsetHeight){ 
			rolagemH = document.body.scrollWidth;
			rolagemV = document.body.scrollHeight;
		} else {
			rolagemH = document.body.offsetWidth;
			rolagemV = document.body.offsetHeight;
		}	
		if(rolagemV > alturaPag) {
			alturaPag = rolagemV;
			if(/Internet Explorer/.test(navigator.appName)) alturaPag+=30;
		}
		if(rolagemH > larguraPag) larguraPag = rolagemH;
	}
	valores = new Array(larguraPag,alturaPag); 
	return valores;
}

function EnviandoInfo() {
	MedidasPagina = pegaMedidas(true);
	LarguraPagina = MedidasPagina[0];
	AlturaPagina = MedidasPagina[1];
	
	var ObjBody = document.getElementsByTagName("body").item(0);
	var ObjFundo = document.createElement("div");
	
	ObjFundo.setAttribute('id','FundoEnviaImagem');
	ObjFundo.style.position="absolute"; 
	ObjFundo.style.top="0px";
	ObjFundo.style.left="0px";
	ObjFundo.style.width=LarguraPagina+"px";
	ObjFundo.style.height=AlturaPagina+"px";
	ObjFundo.style.background="#EAEAEA";
	ObjFundo.style.zIndex=998;
	ObjFundo.style.MozOpacity=.7;
	ObjFundo.style.opacity=.7;
	ObjFundo.style.filter="Alpha(Opacity=70)";
	ObjBody.appendChild(ObjFundo);
	
	
	var ObjQuadro = document.createElement("div");
	
	ObjQuadro.setAttribute('id','QuadroEnviaImagem');
	ObjQuadro.style.position="absolute";
	ObjQuadro.style.border="solid 2px #CCCCCC";
	ObjQuadro.style.top=""+ AlturaPagina/2-165 +"";
	ObjQuadro.style.left=""+ LarguraPagina/2-165 +"";
	ObjQuadro.style.width="250px";
	ObjQuadro.style.height="250px";
	ObjQuadro.style.background="#FFFFFF";
	ObjQuadro.style.padding="5px";
	ObjQuadro.style.zIndex=999;
	ObjQuadro.innerHTML = "<span style='color:#006699; font-family: Verdana; font-size:12px; text-align:center; font-weight:bold;'><p>Aguarde...</p><p>&nbsp;</p><p>Os dados est\xe3o sendo enviados...</p><p>&nbsp;</p><p>&nbsp;</p><p><img src=Imagens/ImagemLoading.gif></p></span>";
	
	ObjBody.appendChild(ObjQuadro);
}
/* FIM ENVIANDO DADOS */



/* COMECO ALTERAR REGISTRO COM IMAGEM */
function RegistroImagem(Valor) {
	if (Valor == "Manter") {
		document.getElementById("NovaImagem").style.display="none"
	} else if (Valor == "Alterar") {
		document.getElementById("NovaImagem").style.display=""
	} else if (Valor == "Excluir") {
		document.getElementById("NovaImagem").style.display="none"
	}
}

function RegistroImagemCheck() {
	try {
		var Manter = document.getElementById('Manter').checked;
	} catch(e) {
		var Manter = '';
	}

	try {
		var Alterar = document.getElementById('Alterar').checked;
	} catch(e) {
		var Alterar = '';
	}
	
	try {
		var Excluir = document.getElementById('Excluir').checked;
	} catch(e) {
		var Excluir = '';
	}
	
	if (Manter) {
		document.getElementById("NovaImagem").style.display="none"
	} else if (Alterar) {
		document.getElementById("NovaImagem").style.display=""
	} else if (Excluir) {
		document.getElementById("NovaImagem").style.display="none"
	}
}
/* COMECO ALTERAR REGISTRO COM IMAGEM */



/* COMECO LIMPAR BUSCA */
function LimpaBusca() {
	document.Buscar.Busca.value='';
	document.Buscar.Estado.value='';
	document.Buscar.Cidade.value='';
	document.Buscar.Categoria.value='';
	document.Buscar.Imagens.value='';
	
	BuscaUF('','','');
}
/* FIM LIMPAR BUSCA */