function Desvia(Sistema,Servico,Dados,Servidor)
{
	var Largura, Altura, Opcoes, Url;
	Largura = window.screen.width - 20
	Altura =  window.screen.height - 85
	if(Servidor != null)
	{
		if(Servidor.toUpperCase() == "INTERNET")
		{
			if((Sistema.toUpperCase() == "HOME") || (Sistema.toUpperCase() == "BANCOSIM"))
			{
				Servidor = "https://ww8.banrisul.com.br";
			}
			else if( (Sistema.toUpperCase() == "OFFICE") || (Sistema.toUpperCase() == "BANRICOMPRAS"))
			{
				Servidor = "https://ww7.banrisul.com.br";
			}
			else
			{
				Servidor = 'https://ww7.banrisul.com.br';
			}
		}
		else if(Servidor.toUpperCase() == "INTRANET")
		{
			Servidor = "https://intraws";
		}
		else if((Servidor.toUpperCase() == "N006") || (Servidor.toUpperCase() == ""))
		{
		    if(Sistema.toUpperCase() == "BANRICOMPRAS")
			{
				Servidor = "https://ww7.banrisul.com.br";
			}
			else
			{
			    Servidor = "http://n006";
			}
		}
		else if(Servidor.toUpperCase() == "N042")
		{
		    Servidor = "http://n042";
		}
	}
	else
	{
		Servidor = '';
	}	
		Opcoes = "top=5,left=5,height=" + Altura + ",width=" + Largura + ",status=yes,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no";
		if(Servico) Servico = "&Servico=" + Servico; else Servico = "";
		if(Dados)
		    Dados = "&Dados=" + Dados;
		else
		    Dados = "";

		if (Sistema.toUpperCase() == "HOME") {
		    Url = Servidor + "/brb/link/brbwe4hw.aspx?Largura="+window.screen.width+"&Altura="+Altura+"&Sistema="+Sistema+Servico+Dados;
		}
		else if (Sistema.toUpperCase() == "BANCOSIM") {
		    Url = Servidor + "/brb/link/brbwe0hw.aspx?Largura="+window.screen.width+"&Altura="+Altura+"&Sistema="+Sistema+Servico+Dados;
		}
		else if ((Sistema.toUpperCase() == "OFFICE") || (Sistema.toUpperCase() == "BANRICOMPRAS")){
		    Url = Servidor + "/brb/link/brbwe4hw.aspx?Largura="+window.screen.width+"&Altura="+Altura+"&Sistema="+Sistema+Servico+Dados;
		}
		
		window.open(Url, "Banrisul", Opcoes, true);
}
