
function modelo3d(cod){
	w = 422;
	h = 352;
	largura = screen.width;
	altura = screen.height;
	XX =(largura-w)/2;
	YY = (altura-h)/2;
	janela = window.open('../produtos/3d.php?c='+cod,'POP_MODELO','width='+w+',height='+h+',left='+XX+',top='+YY+',scrollbars=no,status=no,resizable=no, toolbar=no,directories=no,menubar=no');
	janela.focus();
}

function valida_contato(frm){
	if (frm.nome.value.length < 1){
		alert("Preencha o campo 'Nome'.");
		frm.nome.focus();
		return (false);
	}
	return (true);
}

function EnviaUF(uf){
	document.location="../onde/index.php?uf="+uf
}

function showRepre(uf){
	try{
	xmlhttp = new XMLHttpRequest();
	}catch(ee){
		try{
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(E){
				xmlhttp = false;
			}
		}
	}
	if(xmlhttp){
		var u = "listagem.php?uf="+uf+"&"+Math.random();
		xmlhttp.open("GET",u,true);
		xmlhttp.onreadystatechange = function(){
			if (xmlhttp.readyState == 4){
				mm = unescape(xmlhttp.responseText.replace(/\+/g," "));
				document.getElementById('resultado').innerHTML = mm;
			}
		}
		document.getElementById('resultado').innerHTML = "<div id='aguarde'><img src='../img/common/ajax.gif' alt='' /></div";
		xmlhttp.send(null);
	}
	
	/*var div = document.getElementById('resultado');
	if(div.style.display == 'none'){
		div.style.display = 'inline';
	} else{
		div.style.display = 'none';
	}*/
}