﻿function addAdvertisementWithBrowserVersioning(areaName, position, rnPrefix, forceReload) {
            
    if (OASserverUrl.length > 0 //OASserverUrl is set in MasterPages with BuildVariableSetting()
        && (window.location.href.indexOf('refresh=1') == -1
        //OASReloadEttanWithBanners is set in MasterPages with AdvertisementVisualizer.OasReloadEttanWithBanners()
        || ((OASReloadEttanWithBanners == true) || forceReload == true))) {
        
        var prefix = readCookie("advertisementPrefix");
        if (prefix != null) {
            areaName = prefix + areaName;
        }

        document.write("<script type='text/javascript'>");
        document.write("OAS_version = 10;");
        document.write("OAS_rn = new String (Math.random());");
        document.write("OAS_rns = OAS_rn.substring (2, 11);");

        document.write("OAS_url = '" + OASserverUrl + "';");
        document.write("OAS_sitepage = 'di.se/" + areaName + "';");
        document.write("OAS_pos = '" + position + "';");

        document.write("document.write(\"<SCR\"+\"IPT type='text/javascript' SRC='\" + OAS_url + \"/RealMedia/ads/adstream_jx.ads/\" + OAS_sitepage + \"/1\" + OAS_rns +\"@\" + OAS_pos + \"'>\");");
        document.write("</script>");

        document.write("<script type='text/javascript'>");
        document.write("<!--");
        document.write("_version=10;");
        document.write("//-->");
        document.write("</script>");

        document.write("<script type='text/javascript'>");
        document.write("<!--");
        document.write("_version=11;");
        document.write("// -->");
        document.write("</script>");
        document.write("<script type='text/javascript'>");
        document.write("<!--");
        document.write("if (navigator.appVersion.indexOf('MSIE 3') != -1){");
        document.write("document.write(\"<IFRAME WIDTH=460 HEIGHT=120 MARGINWIDTH=0 MARGINHEIGHT=0 HSPACE=0 VSPACE=0 FRAMEBORDER=0 SCROLLING=no BORDERCOLOR='#000000' SRC='\" + OAS_url + \"/RealMedia/ads/adstream_sx.ads/\" + OAS_sitepage + \"/1\" + OAS_rns +\"@\" + OAS_pos + \"'></iframe>\");");
        document.write("} else if (_version < 11) {");

        document.write("document.write(\"<A HREF='\" + OAS_url + \"/RealMedia/ads/click_nx.ads/\" + OAS_sitepage + \"/1\" + OAS_rns +\"@\" + OAS_pos + \"'><IMG class=\"adImage\" SRC='\" + OAS_url + \"/RealMedia/ads/adstream_nx.ads/\" + OAS_sitepage + \"/1\" + OAS_rns +\"@\" + OAS_pos + \"'></A>\");");
        document.write("}//-->");
        document.write("</script>");
    }
}
