function TrocarCss(Elemento, ClasseCss) 
{
	Elemento.className = ClasseCss;	
}

function AlterarUrl(Url)
{
	location.href = Url;
}
function AlterarUrl(Url, Target)
{
	window.open(Url,Target);
}

function AutoTab(CampoOrigem,CampoDestino)
{
	if ((CampoOrigem.getAttribute&&CampoOrigem.value.length==CampoOrigem.getAttribute("maxlength")))
		CampoDestino.focus();
}

function SelecionarTudo(Elemento)
{
    Elemento.select();
}

function AbrirSuporte()
{
    var NovaJanelaLeftS;
    var NovaJanelaTopS;
    var NovaJanelaWidthS = 630;
    var NovaJanelaHeightS = 510;
    var NovaJanelaPropS;

    NovaJanelaLeftS = (screen.width / 2) - (NovaJanelaWidthS / 2);
    NovaJanelaTopS = (screen.height /2) - (NovaJanelaHeightS / 2) - 50;

    NovaJanelaPropS = "height=" + NovaJanelaHeightS + ",width=" + NovaJanelaWidthS + ",left=" + NovaJanelaLeftS + ",top=" + NovaJanelaTopS + ",status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=no,scrollbars=yes";
    window.open("http://www.yoursoft.com.br/Suporte/Contato.aspx?Cl=Incursos","",NovaJanelaPropS);
}
