case "gif":
                var tmpAdContent = document.createElement("a");
                tmpAdContent.id = theAdId;
                tmpAdContent.href = theAdUrl;
                tmpAdContent.frameBorder = 0;
                tmpAdContent.scrolling = "no";
                tmpAdContent.menubar = "no";
                tmpAdContent.toolbar = "no";
                tmpAdContent.location="no";
                tmpAdContent.target = "_blank";
                tmpAdContent.style.width = theAdWidth + "px";
                tmpAdContent.style.height = theAdHeight + "px";
                tmpAdContent.style.margin = "0 auto";
                tmpAdContent.style.display = "block";
                var ImageObj = new Image();
                ImageObj.id = theAdId + "_img";
                ImageObj.style.width = theAdWidth + "px";
                ImageObj.style.height = theAdHeight + "px";
                ImageObj.style.border = "none";
                ImageObj.src = theAdSrc;
                tmpAdContent.appendChild(ImageObj);
                break;