﻿/* Advanced Search by JURINFOR */

function change()
{
	nome=document.getElementById("as_input_nome").value;
	apelido=document.getElementById("as_input_apelido").value;
	equipa=document.getElementById("as_select_equipa").value;
	
	if ( nome == '' && apelido == '' )
	{
		document.getElementById("as_submit").href="#";
		document.getElementById("as_error").innerHTML='<span style="color:#dd1137;">Por favor preencha pelo menos um campo para concluir a sua pesquisa.</span><br><span style="color:#999;">Please write something to search our database.</span>';
	}
	else
	{
		document.getElementById("as_error").innerHTML='&nbsp;';
		switch(equipa)
		{
			case '1':
				area=document.getElementById("as_select_area").value;
				if ( apelido == '' )
				{
					document.getElementById("as_submit").href ='?s=' + nome + '&cat=' + area + '&title_only=1';
				}
				else if ( nome == '' )
				{
					document.getElementById("as_submit").href ='?s=' + apelido + '&cat=' + area + '&title_only=1';
				}
				else
				{
					document.getElementById("as_submit").href ='?s=' + nome + '+' + apelido + '&cat=' + area + '&title_only=1';
				}
				break;
			case '2':
				if ( apelido == '' )
				{
					document.getElementById("as_submit").href ='?s=' + nome + '&cat=' + '12' + '&title_only=1';
				}
				else if ( nome == '' )
				{
					document.getElementById("as_submit").href ='?s=' + apelido + '&cat=' + '12' + '&title_only=1';
				}
				else
				{
					document.getElementById("as_submit").href ='?s=' + nome + '+' + apelido + '&cat=' + '12' + '&title_only=1';
				}
				break;
			case '3':
				if ( apelido == '' )
				{
					document.getElementById("as_submit").href ='?s=' + nome + '&cat=' + '9' + '&title_only=1';
				}
				else if ( nome == '' )
				{
					document.getElementById("as_submit").href ='?s=' + apelido + '&cat=' + '9' + '&title_only=1';
				}
				else
				{
					document.getElementById("as_submit").href ='?s=' + nome + '+' + apelido + '&cat=' + '9' + '&title_only=1';
				}
				break;
			default:
				document.getElementById("as_submit").href="#";
				document.getElementById("as_error").innerHTML='<span style="color:#dd1137;">Por favor escolha uma equipa.</span><br><span style="color:#999;">Please choose a team.</span>';
		};
	};
};

function area_toggle(x)
{
	if (x=='1')
	{
		//document.getElementById("as_area").innerHTML='<p>Áreas de actuação</p><select id="as_select_area"><option value="37">BANCÁRIO, FINANCEIRO E SEGUROS</option><option value="187">COMÉRCIO INTERNACIONAL E INVESTIMENTO ESTRANGEIRO</option><option value="198">CONSTRUÇÃO E INFRAESTRUTURAS</option><option value="189">ENERGIA E RECURSOS NATURAIS</option><option value="195">LABORAL E MIGRAÇÃO</option><option value="191">PROPRIEDADE INTELECTUAL</option><option value="193">SOCIETÁIO - M&A CORPORATE</option><option value="202">TRANSPORTES E TELECOMUNICAÇÕES</option></select>';
		$('#as_area').show();
	}
	else
	{
		//document.getElementById("as_area").innerHTML='&nbsp;';
		$('#as_area').hide();
	};
};

/*
function test()
{
		document.getElementById("submit").href="#WORKING";
		testes=document.getElementById("adv_search_equipa").value;
		document.getElementById("adv_search_error").innerHTML=testes;
};
*/
