function llamadaclick(identificador)
{
	if(document.getElementById("clickOculto"))
	{
		document.getElementById("clickOculto").src = "/click.asp?" + identificador;
	}
	else
	{ 
		var iFrame = document.createElement("IFRAME");
		iFrame.setAttribute("id", "clickOculto"); 
		iFrame.setAttribute("name", "clickOculto");
		iFrame.setAttribute("src", "/click.asp?" + identificador);
		iFrame.style.display = "none";
		document.body.appendChild(iFrame); 
	}
}
