function valida(formulario)
{	if(formulario.elements["sistema"].selectedIndex==1)
	{	return true; }
	if(formulario.elements["senha"].value.trim()=="")
	{	alert("Senha não fornecida");
		formulario.elements["senha"].focus();
		return false;
	}
	return true;
}

function pop_up(sistema)
{	largura=640;
	altura=480;
	esquerda=(screen.width/2)-(largura/2);
	topo=(screen.height/2)-(altura/2);
	endereco="http://www.google.com.br";
	cabecalho="pesquisa";
	switch(sistema)
	{	case 1:
			endereco="pop_up.php?s=os";
			cabecalho="ordem_servico";
			break;
		case 2:
			endereco="http://www.informsolucoes.com.br/webmail/";
			cabecalho="webmail";
	}

top.frames["conteudo"].document.location.href=endereco;

//	j_caixa=window.open(endereco,cabecalho,"top="+topo+",left="+esquerda+",width="+largura+",height="+altura+",toolbar=0,location=0,directories=0,status=0,scrollbars=1,menubar=0,resizable=1");
//	j_caixa.focus();
}

