// JavaScript Document
function selectSexo(sx)
{
	var id = '#' + sx;
	$('#newsSexo').val(sx); //valor hidden
	$('span').removeClass('radioNewsAtivo');
	$(id).addClass('radioNewsAtivo');
}

function criaBox(titulo, msg, ID)
{
	$("#boxModal").dialog({
		modal: true,
		buttons: {
			Ok: function() {
				$(this).dialog('close');
			}
		}
	});
}

$(document).ready(function(){
	//$("#boxModal").dialog("destroy");

	//Carregamento de Páginas
	//Carregamento Inicial
	$.get('inc_inicio.php', function(html)
	{
		$('#conteudo').html(html);
	});	

	$('#btValidaExame').click(function(){
	 //{identificacao: $('#identificacao').val(), senha:$('#senha').val(), frame: 'S', redir: 'https://www.resultados.com.br/clientes/lablac/lablac.aspx' },
	 	var 	identificacao = $('#identificacao').val(), 
				senha = $('#senha').val(),
				frame= 'S', 
				redir= 'https://www.resultados.com.br/frame.aspx?chave=LABLAC';
				
				var Form = document.forms['exameValida'];
				
				Form.action='https://www.resultados.com.br/index.aspx?origem=LABLAC'; //"https://www.resultados.com.br/index.aspx?origem=lablac";
				Form.method="post";
				Form. target="_blank";
				Form.submit();

	});


});


