function setFocus( id ) {
	document.getElementById(id).focus();
}

function menuIn(width, height, state) {
	//Altera tamanho do elemento EMBED
    var dm = document.getElementById("main_menu").firstChild;
	dm.style.width=width+"px";
    dm.style.height=height+"px";

	if ( state == "0" ) {
		//Executa quando fecha o menu drop-down no flash, joga o caixa de busca para cima do flash
		document.getElementById("search_form").style.zIndex="4";
	}
	else if ( state == "1" ) {
		//Executa quando abre o menu drop-down no flash, joga o caixa de busca para baixo do flash
		document.getElementById("search_form").style.zIndex="1";
	}
}
