
function CallAdmotionPostTag()
{
	//vars definition
	var postTagCurrentId = 0;
	var postTagIdCollection = 	{
									home: 4267,//ID Post Tag Home
									linha: 4268,//ID Post Tag Linha						
									tipo: 4269,//ID Post Tag Tipo						
									detalhe: 4270,//ID Post Tag Detalhe						
									homeCartaoPresente: 4278,//ID Post Tag Home CArtão Presenta
									oQueE: 4279,
									vantagens: 4281,
									compreAqui: 4284,
									meusPedidos: 4282,
									duvidasFrequentes: 4283,
									cartaoPago: 4285
								};

	var postTagAditionalInfo = null;

	if(arguments.length > 0)
	{//post tag Level (Home, Linha, Tipo, Detalhe)
		switch(arguments[0])
		{
			case "home":
				postTagCurrentId = postTagIdCollection.home;
				break;
			case "linha":
				postTagCurrentId = postTagIdCollection.linha;
				break;
			case "tipo":
				postTagCurrentId = postTagIdCollection.tipo;
				break;
			case "detalhe":
				postTagCurrentId = postTagIdCollection.detalhe;
				break;
			case "home cartão presente":
				postTagCurrentId = postTagIdCollection.homeCartaoPresente;
				break;
			case "o que é":
				postTagCurrentId = postTagIdCollection.oQueE;
				break;
			case "vantagens":
				postTagCurrentId = postTagIdCollection.vantagens;
				break;
			case "compre aqui":
				postTagCurrentId = postTagIdCollection.compreAqui;
				break;
			case "meu pedidos":
				postTagCurrentId = postTagIdCollection.meusPedidos;
				break;
			case "duvidas frequentes":
				postTagCurrentId = postTagIdCollection.duvidasFrequentes;
				break;
			case "cartao pago":
				postTagCurrentId = postTagIdCollection.cartaoPago;
				break;			
				
		}
			
	}
	
	if(arguments.length > 1)
	{//post tag aditional info
		postTagAditionalInfo = "info1**" + arguments[1];	
		for(i = 2; i < arguments.length; i++)
		{
			postTagAditionalInfo += "||info" + i + "**" + arguments[i];
		}
	}
	
	if(postTagCurrentId != 0)
	{
		ADM_callPostTAG(postTagCurrentId, null, postTagAditionalInfo);	
	}
}
