// JavaScript Document

//Visualiza a foto ampliada em popup
//Usar o link javascript:verimg('caminho/nome.jpg')
		function verimg(img){
		  foto1= new Image();
		  foto1.src=(img);
		  Controlla(img);
		}
		function Controlla(img){
		  if((foto1.width!=0)&&(foto1.height!=0)){
			viewFoto(img);
		  }
		  else{
			funzione="Controlla('"+img+"')";
			intervallo=setTimeout(funzione,20);
		  }
		}
		function viewFoto(img){
		  largh=foto1.width+20;
		  altez=foto1.height+20;
		  stringa="width="+largh+",height="+altez;
		  finestra=window.open(img,"",stringa);
		}
		
		function escolha(imagem,alt){
			document.getElementById('produto_foto_descricao').innerHTML = (alt);
			document.getElementById('foto_g').src=('http://www.casaturnes.com.br/imgs/produtos/'+imagem);
			document.getElementById('foto_link').href=('javascript:mostrafoto("'+imagem+'")')
			document.getElementById('foto_g').alt = (alt);
		}
		
		function Validar_Email(email)
		{
			if(email.length < 6) {
				return false;
			}
			var x = 0;
			for (var c=0;c<email.length;c++) {
				if (email.substring(c,c+1) == '@') {
					x = c;
				}
			}
			var y = 0;
			if (x > 0) {
				for (c=x;c<email.length;c++) {
					if (email.substring(c,c+1)=='.') {
						y = c;
						var valida = 1;
					}
				}
				if (y > 0) {
					var dominio = '';
					for (c=x;c<y;c++) {
						dominio = dominio + email.substring(1,c);
					}
				}
			}
			else {
				return false;
			}					
			if (y <= x+2){
				return false;
			}				
			if (valida == 1){
				return true;
			}
		}
		
		function Validar()
		{
			if (document.carrinho.c_nome.value == "") {
				document.carrinho.c_nome.focus();
				alert("Informe seu nome!");
				return;
			}
			if (document.carrinho.c_fone.value == "") {
				document.carrinho.c_fone.focus();
				alert("Informe seu telefone!");
				return;
			}
			if (document.carrinho.c_email.value != "") {
						if (!Validar_Email(document.carrinho.c_email.value)) {
						document.carrinho.c_email.focus();
						alert("E-mail inválido!");
						return; return; }
			}	
			if (document.carrinho.c_cidade.value == "") {
				document.carrinho.c_cidade.focus();
				alert("Informe sua cidade!");
				return;
			}
			if (document.carrinho.c_bairro.value == "") {
				document.carrinho.c_bairro.focus();
				alert("Informe seu bairro!");
				return;
			}
			if (document.carrinho.c_estado.value == "") {
				document.carrinho.c_estado.focus();
				alert("Informe seu estado!");
				return;
			}
			if (document.carrinho.c_endereco.value == "") {
				document.carrinho.c_endereco.focus();
				alert("Informe seu endereço!");
				return;
			}
			if (document.carrinho.c_cep.value == "") {
				document.carrinho.c_cep.focus();
				alert("Informe seu cep!");
				return;
			}
			if (document.carrinho.c_nasc.value == "") {
				document.carrinho.c_nasc.focus();
				alert("Informe sua data de nascimento!");
				return;
			}
			document.carrinho.submit();

		}
		
		function mostrafoto(nome_foto){
			var url_foto = "http://www.casaturnes.com.br/imgs/produtos/originais/"+nome_foto;
			document.getElementById('img_g').src=(url_foto);
			document.getElementById('area_img_g').style.display="block";
			document.getElementById('transparente').style.display="block";
			}
		function fechafoto(){
			document.getElementById('area_img_g').style.display="none";
			document.getElementById('transparente').style.display="none";
			}
		
function flash(arquivo, largura, altura, transp){
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='" + largura + "' height='" + altura + "'>");
	document.write("	<param name='movie' value='" + arquivo + "'>");
	document.write("	<param name='quality' value='high'>");
	if(transp){
		document.write("	<param name='wmode' value='transparent'>");
	}
	document.write("	<embed src='" + arquivo + "'");
	if(transp){
		document.write(" wmode='transparent'");
	}
	document.write(" quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + largura + "' height='" + altura + "'></embed>");
	document.write("</object>");
}

function ver_frete(){
		var selecionado = document.carrinho.frete.selectedIndex;
		var valor = document.carrinho.frete.options[selecionado].value;
			if (valor == "Loja"){
				document.getElementById('CEP').style.display="none";
				document.getElementById('valor_frete').innerHTML = "R$ 0,00";//appendChild(document.createTextNode(' Descrição: '));
				document.getElementById('valor_compra').innerHTML = subtotal;
			//document.carrinho.acao.value="simula_frete";			
			//document.carrinho.submit();
			}else{
				document.carrinho.acao.value="simula_frete";
				document.getElementById('CEP').style.display="block";
			}
		
		//alert(valor);
		
	}
	
function finalizar(){
	document.carrinho.acao.value="finaliza_compra";
	document.carrinho.submit();
	}
	

	
	
	
	
	
