﻿
	var ajaxDistribuidores;	
	var so = null;
	var _estado = null;
	
	//ajaxDistribuidores = new Request({url:'cms/modules/shops/index.php',method:'post'});
	
	//ajaxDistribuidores.addEvent('onFailure', function(xhr){
	//	alert('erro!');
	//});
			
	//ajaxDistribuidores.addEvent('onSuccess', function(responseText, responseXML){
							
		//labelEstados = new Array();
							
		//var estados = responseXML.getElementsByTagName('state');
		
		//for(i = 0;i<estados.length;i++){
		//	labelEstados.push([estados[i].getElementsByTagName('abb')[0].firstChild.data , estados[i].getElementsByTagName('name')[0].firstChild.data]);
		//}
		
		//ajaxDistribuidores = null;
				
	//});	
	
	//ajaxDistribuidores.send('action=getStates');
	
	window.setTimeout(addEvents,100);
	
	
	function addEvents(){

		if($('combo_cidades') && $('combo_lojas') && $('mapa')){
			$('combo_cidades').addEvent('change',carregaLojas);
			$('combo_lojas').addEvent('change',carregaDescricao);
			
			so = new SWFObject("imagens/mapa.swf", "mymovie", "460px", "470px", "8", "#FFFFFF");
			so.addParam("quality", "high");
			so.addParam("wmode", "transparent");
			so.write("mapa");
		}else{
			window.setTimeout(addEvents,100);
		}
	
	}
	
	function carregaCidades(estado){
		
		//document.getElementById('cidades').setStyle('visibility','hidden');
		document.getElementById('cidades').style.visibility = "hidden";
		//document.getElementById('cidades').setStyle('opacity','0');
		document.getElementById('cidades').style.opacity = 0;
		
		//document.getElementById('lojas').setStyle('visibility','hidden');
		document.getElementById('lojas').style.visibility = "hidden";
		//document.getElementById('lojas').setStyle('opacity','0');
		document.getElementById('lojas').style.opacity = 0;
		
		//document.getElementById('exibicao').setStyle('visibility','hidden');
		document.getElementById('exibicao').style.visibility = "hidden";
		//document.getElementById('exibicao').setStyle('opacity','0');		
		document.getElementById('exibicao').style.opacity = 0;
		
		ajaxDistribuidores = new Request({url:'cms/front/distributors/index.php',method:'post'});
		
		ajaxDistribuidores.addEvent('onFailure', function(xhr){
			alert('erro!');
		});
				
		ajaxDistribuidores.addEvent('onSuccess', function(responseText, responseXML){
								
			var selectCidades;
								
			var cidades = responseXML.getElementsByTagName('city');
			
			if(cidades.length > 0){

				selectCidades = "<option value=\"0\">&nbsp;</option>";
			
				for(i = 0;i<cidades.length;i++){
					selectCidades +=  "<option value=\"" + cidades[i].getElementsByTagName('name')[0].firstChild.data + "\">" + cidades[i].getElementsByTagName('name')[0].firstChild.data + "</option>";
				}
				
				$('combo_cidades').disabled = false;
			
			}else{
				selectCidades = "<option value=\"0\">Nenhuma Cidade Disponível</option>";
				$('combo_cidades').disabled = true;
			}
			
			$('combo_cidades').set('html', selectCidades);

			//$('cidades').setStyle('opacity','0');
			document.getElementById('cidades').style.opacity = 0;
			$('cidades').set('tween').tween('opacity', '1.0');
			
			ajaxDistribuidores = null;
					
		});		
		_estado = estado;
		ajaxDistribuidores.send('action=getCities&state=' + estado);
		
		// var label = "Selecione um estado";
		
		// for(i = 0;i<labelEstados.length;i++){
			// if(labelEstados[i][0] == estado){
				// label = label + '<br/><br/>' + labelEstados[i][1];
				// break;
			// }
		// }
	
		// document.getElementById('labelEstados').innerHTML = label;		
		
	}
	
	
	function carregaLojas(evt){
		//document.getElementById('lojas').setStyle('visibility','hidden');
		//document.getElementById('lojas').setStyle('opacity','0');
		
		document.getElementById('lojas').style.visibility = "hidden";
		document.getElementById('lojas').style.opacity = 0;
		
		//document.getElementById('exibicao').setStyle('visibility','hidden');
		//document.getElementById('exibicao').setStyle('opacity','0');		
		
		document.getElementById('exibicao').style.visibility = "hidden";
		document.getElementById('exibicao').style.opacity = 0;
		
		if(document.getElementById('combo_cidades').selectedIndex != 0){
		
			ajaxDistribuidores = new Request({url:'cms/front/distributors/',method:'post'});
			
			ajaxDistribuidores.addEvent('onFailure', function(xhr){
				alert('erro!');
			});
					
			ajaxDistribuidores.addEvent('onSuccess', function(responseText, responseXML){
									
				var lojas = responseXML.getElementsByTagName('shop');
				
				if(lojas.length > 0){
				
					selectLojas = "<option value=\"0\">&nbsp;</option>";				
				
					for(i = 0;i<lojas.length;i++){
						selectLojas +=  "<option value=\"" + lojas[i].getElementsByTagName('id')[0].firstChild.data + "\">" + lojas[i].getElementsByTagName('name')[0].firstChild.data + "</option>";
					}
					
					$('combo_lojas').disabled = false;
				
				}else{
					selectLojas = "<option value=\"0\">Nenhuma Loja Disponível</option>";
					$('combo_lojas').disabled = true;
				}
				
				$('combo_lojas').set('html', selectLojas);

				//$('lojas').setStyle('opacity','0');
				document.getElementById('lojas').style.opacity = 0;
				$('lojas').set('tween').tween('opacity', '1.0');
				
				ajaxDistribuidores = null;
						
			});		

			ajaxDistribuidores.send('action=getShops&city=' + document.getElementById('combo_cidades')[document.getElementById('combo_cidades').selectedIndex].value  + '&state=' + _estado);
		
		}
		
	}

	function carregaDescricao(evt){
		//document.getElementById('exibicao').setStyle('visibility','hidden');
		//document.getElementById('exibicao').setStyle('opacity','0');

		document.getElementById('exibicao').style.visibility = "hidden";
		document.getElementById('exibicao').style.opacity = 0;		


		$('nomeLoja').set('html', "");
		$('enderecoLoja').set('html', "");
		$('cidadeEstadoLoja').set('html', "");
		$('cepLoja').set('html', "");
		$('telefoneLoja').set('html', "");
		$('faxLoja').set('html', "");
		$('emailLoja').set('html', "");
		$('siteLoja').set('html', "");
				
		if(document.getElementById('combo_lojas').selectedIndex != 0){
		
			ajaxDistribuidores = new Request({url:'cms/front/distributors/',method:'post'});
			
			ajaxDistribuidores.addEvent('onFailure', function(xhr){
				alert('erro!');
			});
					
			ajaxDistribuidores.addEvent('onSuccess', function(responseText, responseXML){
									
				
				var descricao = responseXML.getElementsByTagName('shop');

				if(descricao.length > 0){
				
					$('nomeLoja').set('html', descricao[0].getElementsByTagName('name')[0].firstChild.data);
					$('enderecoLoja').set('html', descricao[0].getElementsByTagName('address')[0].firstChild.data);
					try{
						$('cepLoja').set('html', descricao[0].getElementsByTagName('cep')[0].firstChild.data);
					}catch(e){}
					$('cidadeEstadoLoja').set('html', descricao[0].getElementsByTagName('city')[0].firstChild.data + "/" +  descricao[0].getElementsByTagName('state')[0].firstChild.data );
					
					try{
						$('telefoneLoja').set('html', descricao[0].getElementsByTagName('phone1')[0].firstChild.data);
						$('telefoneLoja').parentNode.style.visibility = "visible";
					}catch(e){document.getElementById('telefoneLoja').parentNode.style.visibility = "hidden";}
					try{
					$('faxLoja').set('html', descricao[0].getElementsByTagName('phone2')[0].firstChild.data);
					$('faxLoja').parentNode.style.visibility = "visible";
					}catch(e){document.getElementById('faxLoja').parentNode.style.visibility = "hidden";}
					try{
					$('emailLoja').set('html', "<a href=\"mailto://" + descricao[0].getElementsByTagName('email')[0].firstChild.data + "\">" + descricao[0].getElementsByTagName('email')[0].firstChild.data + "</a>");
					$('emailLoja').parentNode.style.visibility = "visible";
					}catch(e){document.getElementById('emailLoja').parentNode.style.visibility = "hidden";}
					try{
						$('siteLoja').set('html', "<a href=\"http://" + descricao[0].getElementsByTagName('site')[0].firstChild.data + "\">" + descricao[0].getElementsByTagName('site')[0].firstChild.data + "</a>");
						$('siteLoja').parentNode.style.visibility = "visible";
					}catch(e){
						document.getElementById('siteLoja').parentNode.style.visibility = "hidden";
					}
					
					
					try{
						if(descricao[0].getElementsByTagName('tsw')[0].firstChild.data == "Y"){
							document.getElementById('tsw').style.display = "inline";
						}else{
							document.getElementById('tsw').style.display = "none";
						}
					}catch(e){
						document.getElementById('tsw').style.display = "none";
					}
					
					try{
						if(descricao[0].getElementsByTagName('tsm')[0].firstChild.data == "Y"){
							document.getElementById('tsm').style.display = "inline";
						}else{
							document.getElementById('tsm').style.display = "none";
						}
					}catch(e){
						document.getElementById('tsm').style.display = "none";
					}
					
					try{
						if(descricao[0].getElementsByTagName('iso14001')[0].firstChild.data == "Y"){
							document.getElementById('iso14001').style.display = "inline";
						}else{
							document.getElementById('iso14001').style.display = "none";
						}
					}catch(e){
						document.getElementById('iso14001').style.display = "none";
					}
					
					
				
					// for(i = 0;i<lojas.length;i++){
						// selectLojas +=  "<option value=\"" + lojas[i].getElementsByTagName('id')[0].firstChild.data + "\">" + lojas[i].getElementsByTagName('name')[0].firstChild.data + "</option>";
					// }
				
				
				 }else{
					// selectLojas = "<option value=\"0\">Nenhuma Cidade Disponível</option>";

				 }
				
				// $('combo_lojas').set('html', selectLojas);

				 //$('exibicao').setStyle('opacity','0');
				 document.getElementById('exibicao').style.opacity = 1;
				 document.getElementById('exibicao').style.visibility = "visible";
				 //$('exibicao').set('tween').tween('opacity', '1.0');
				
				
				
				
				ajaxDistribuidores = null;
						
			});		
			ajaxDistribuidores.send('action=getDescShop&shopId=' + document.getElementById('combo_lojas')[document.getElementById('combo_lojas').selectedIndex].value);
		
		}
		
	}	