var AdvertisingAddress = "http://www.albombom.co.il/Advertising/";
var BannersAddress = "http://www.albombom.co.il/Up_Files/AdBanners/";

function GetBannerHTML(ID, FileExt, Width, Height) {
    if (FileExt == ".swf")
        var Txt = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + Width + "\" height=\"" + Height + "\">" +
                  "<param name=\"movie\" value=\"" + BannersAddress + ID + FileExt + "\">" +
                  "<param name=\"quality\" value=\"high\">" +
                  "<param name=\"wmode\" value=\"transparent\">" +
                  "<embed src=\"" + BannersAddress + ID + FileExt + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + Width + "\" height=\"" + Height + "\"></embed></object>";
    else
        var Txt = "<img src=\"" + BannersAddress + ID + FileExt + "?ttt=" + Math.random() + "\" width=\"" + Width + "\" height=\"" + Height + "\">";
    return (Txt);
}

function GetBannerAndLink(ID, FileExt, Width, Height, WebsiteID) {
    var aLink = "<a href=\"" + AdvertisingAddress + "Entry.asp?WebsiteID=" + WebsiteID + "\" target=\"_blank\">";
    if (FileExt == ".swf")
        var Txt = "<div id=\"LinkerDiv" + ID + "\" style=\"position:absolute;z-index:1000;filter:alpha(opacity=0);moz-opacity:0;opacity:0;width:20px;background-color:#FFFFFF;height:20px\">" + aLink + "<div id=\"LinkerDivInner" + ID + "\" style=\"width:20;height:20\"></div></a></div>" +
                  "<span onmousemove=\"ShowDivOnBanner(" + ID + ")\"><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + Width + "\" height=\"" + Height + "\">" +
                  "<param name=\"movie\" value=\"" + BannersAddress + ID + FileExt + "\">" +
                  "<param name=\"quality\" value=\"high\">" +
                  "<param name=\"wmode\" value=\"transparent\">" +
                  "<embed src=\"" + BannersAddress + ID + FileExt + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + Width + "\" height=\"" + Height + "\"></embed></object></span>";
    else
        var Txt = aLink + "<img src=\"" + BannersAddress + ID + FileExt + "?ttt=" + Math.random() + "\" width=\"" + Width + "\" height=\"" + Height + "\" border=\"0\"></a>";
    return (Txt);
}

function ShowDivOnBanner(id) {
    
    tempX = event.clientX + document.body.scrollLeft;
    tempY = event.clientY + document.body.scrollTop;
    
    document.getElementById('LinkerDiv' + id).style.posLeft = tempX - 25;
    document.getElementById('LinkerDiv' + id).style.posTop = tempY - 10;
    document.getElementById('LinkerDivInner' + id).style.cursor = 'pointer';
    //alert("dds" + id);
}

