// JavaScript Document
<!--
//VALIDA FALE CONOSCO
function valida_fale() {
var Form
	Form = document.fale;

	if (Form.nome.value==""){
		window.alert('Por favor, informe seu nome.');
		Form.nome.focus();
		return false;
	}
	if (Form.email.value=='') {
		alert('Por favor, informe seu e-mail.');
		Form.email.focus();
		return false;
    }
	return true;
}
//FINAL DA VALIDAÇÃO DO CADASTRO
//VALIDA FALE CONOSCO
function valida_fale_eng() {
var Form
	Form = document.fale;

	if (Form.nome.value==""){
		window.alert('Please, insert yout name.');
		Form.nome.focus();
		return false;
	}
	if (Form.email.value=='') {
		alert('Please, insert your e-mail.');
		Form.email.focus();
		return false;
    }
	return true;
}
//FINAL DA VALIDAÇÃO DO CADASTRO-->
//Amplia Imagem Livre
function Amplia_Imagem_Livre(img,winName,width,height,features) { 
	//1.1 kadazuro kadazuro@kardouz.com
	if(window.screen){
		per_ancho=(width/screen.width)*100;//porcentaje screen-ancho
		per_alto=(height/width)*100;//porcentaje de ancho-alto
		win_ancho=(screen.width*per_ancho)/100;//ancho de la ventana
		win_alto=(win_ancho*per_alto)/100;//alto de la ventana
		x=(screen.width-win_ancho)/2;//centra x
		y=(screen.height-win_alto)/2;//centra y
	}else{// si el buscador es 4-- queda todo igual :(
		x=0;
		y=0;
		win_ancho=w;
		win_alto=y;
	}
	winfeatures=("top="+y+",left="+x+",width="+win_ancho+",height="+win_alto+",scrollbars=no");
	window.open("mostra_img_gd.asp?imagem="+img+"",winName,winfeatures);
}

startList = function() {
if (document.all&&document.getElementById) {
	cssdropdownRoot = document.getElementById("cssdropdown");
	for (x=0; x<cssdropdownRoot.childNodes.length; x++) {
		node = cssdropdownRoot.childNodes[x];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				this.className+=" over";
			}
			node.onmouseout=function() {
				this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

if (window.attachEvent)
	window.attachEvent("onload", startList)
else
	window.onload=startList;