function putDoubleClickAdvertisement(width, height) { try{ putDoubleClickAdvertisement(width, height, document); } catch(error){} } function putDoubleClickAdvertisement(width, height, doc) { try{ if(doc == null || doc == undefined) { doc = document; } var site = getDblClickSiteV2('east'); var zone = null; var src = location.protocol + '//ad.doubleclick.net/adj/' + site + '/'; if (site == 'optimum.click' || site == 'optimum.idcenter') src = 'https://ad.doubleclick.net/adj/' + site + '/'; if(zone != null) { src += zone; } if( (width != null) && (width != undefined)){ src += ';sz=' + width; } if( (height != null) && (height != undefined)){ src += 'x' + height; } //alert(''); src += ';profile=ALL' src += ';ord=' + new Date().getTime(); //src += ';sz=' + width + 'x' + height + ';ord=' + new Date().getTime(); doc.write(''); } catch(error){} }