/*--start of const--*/
var BANNER_BASE_URL = 'http://www.conduit-banners.com/';
/*--end of const--*/
function __CreateDownloadToolbar()
{   
   var w="252px";
   var h="275px";
   if (window.navigator.userAgent.indexOf("MSIE") > 0)
   {
     h="245px";
   }
   
   var strCulture = "";
   
   if (typeof downloadButtonBannerCulture == 'string')
   {
        strCulture  = downloadButtonBannerCulture;
   }
   if (typeof(downloadUrl)!='undefined' && downloadUrl!=null)
        document.write("<iframe style='width:" + w + ";height:" + h + ";' frameborder=\"0\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" src='" + downloadUrl + "Banners/Download/?culture=" + strCulture  + "' ></iframe>");        
   else
        //if (typeof(clientBaseUrl)!='undefined' && clientBaseUrl!=null)
            document.write("<iframe style='width:" + w + ";height:" + h + ";' frameborder=\"0\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" src='" + get_clientBaseUrl() + "Download/?culture=" + strCulture  + "&ctId=" + ctId + "'></iframe>");
    }

function get_clientBaseUrl()
{
    if (clientBaseUrl == 'http://hosting.conduit.com/' || typeof(clientBaseUrl)=='undefined' || clientBaseUrl==null)
        return BANNER_BASE_URL;
    return clientBaseUrl;
}