Mainstream Advertising on Rogue Websites in Hong Kong: A Comparison of Chinese and Western Titles
function changeLanguage1(language, response)
$.ajax(
url: '/AltLanguage_ajax.cfm?type=changeLanguage&partid=1&strCode=en',
cache: false,
success: function(data)
// Update values in cookies
Set_Cookie('SITEID',language,'-1','/','.ssrn.com','');
Set_Cookie('SITEID',language,'1000','/','.ssrn.com','');
// Finally, perform redirection
if (response == 'reload')
window.location.reload();
else
window.location.href=response;
);
function Set_Cookie( name, value, expires, path, domain, secure )
// set time, its in milliseconds
var today = new Date();
today.setTime( today.getTime() );
/*
if the expires variable is set, make the correct
expires time, the current script below will set
it for x number of days, to make it for hours,
delete * 24, for minutes, delete * 60 * 24
*/
if ( expires )
expires = expires * 1000 * 60 * 60 * 24;
var expires_date = new Date( today.getTime() + (expires) );
document.cookie = name + "=" +escape( value ) +
( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) +
( ( path ) ? ";path=" + path : "" ) +
( ( domain ) ? ";domain=" + domain : "" ) +
( ( secure ) ? ";secure" : "" );
/*
* We use this function when the language should be stripped from an object, like a form RADIO
*/
function getLanguage ( oObj ) :?,.";
// Need to clean up code if object came from Mura site.
sCode = oObj.value;
if (sCode.length > 2)
for (var i = 0; i < specialChars.length; i++)
sCode = sCode.replace(new RegExp("\" + specialChars[i], 'gi'), '');
// After cleaning up special chars, we take the first two chars.
sCode = sCode.substring(0,2).trim();
return sCode;
Skip to main content
Remember me
Forgot ID or Password?
Register now
- Your Account
- User Home
- Personal Info
- Affiliations
- Subscriptions
- My Papers
My Library
Sign out
Advanced Search
if(typeof jQuery == 'undefined')
document.write(unescape("%3Cscript src='https://#strStaticServer#/libraries/JQuery/v1.12.4/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
function sentEmailValidation(lngLoginID, forwardURL)
var parameters =
"lngLoginID" : lngLoginID,
"strForwardURL" : forwardURL
;
$.ajax(
type: "POST",
url: "https://static.ssrn.com/cfc/webServices/loginServices.cfc?method=sentValidationEmailNew",
data: parameters,
dataType: "jsonp",
async: false,
success: function(data)
if(data.RESULT == 1)
$("#errorMessageLogin").html(data.MESSAGE);
,
error: function(jqXHR, textStatus, errorThrown)
console.log(textStatus, errorThrown);
);
;
$( document ).ready(function()
// Show translation notice on footer on load
var hebrewIsSelected = $('.dropdown-lang option:last-child').is(':selected'),
$body = $('body'),
$loginBox = $('.loginBox'),
$menuMain = $('.menu-main'),
$profileMenu = $('.profileMenu');
if (hebrewIsSelected)
toggleTranslationNote();
/* dropdown user*/
$('#btnSignin').click(function(e)
e.preventDefault();
pageDataTracker.trackEvent('conversionDriverClick', conversionDriver:name : 'ssrn-header:sign-in-or-register');
$("#txtLogin").val("");
$("#txtPasswordLogin").val("");
$("#errorMessageLogin").hide();
$("#error_show_login").hide();
$("#error_show_pass").hide();
$(".menu-main .register-link").hide();
$loginBox.toggleClass('open');
$body.toggleClass('nav-is-open');
);
$('#btnRegister').on('click', function()
pageDataTracker.trackEvent('conversionDriverClick', conversionDriver:name : 'ssrn-header:register');
);
$('#topPapesLink').on('click', function()
pageDataTracker.trackEvent('conversionDriverClick', conversionDriver:name : 'rankings-top-papers');
);
$('#submitPaperLink').on('click', function()
pageDataTracker.trackEvent('conversionDriverClick', conversionDriver:name : 'ssrn-header:submit-article');
);
$('#btnMenu').on('click', function()
$body.addClass('nav-is-open');
$menuMain.addClass('open');
);
$('.mo-nav-close-btn').on('click', function()
$body.removeClass('nav-is-open');
$(this).closest('.mo-nav').removeClass('open');
);
$('.mo-nav-search-btn').on('click', function()
$menuMain.find('.menu-search').toggleClass('open');
);
$(document).on('click','#profile', function(e)
e.preventDefault();
$body.toggleClass('nav-is-open');
$profileMenu.toggleClass('open');
);
/* Cleaning the email text*/
$('#txtLogin').bind("change keyup input",function()
$(".error_show_login").hide();
$("#txtLogin").removeClass("loginError");
$("#errorMessageLogin").hide();
);
/* Cleaning the password text*/
$('.password-inp').bind("change keyup input",function()
$(".error_show_pass").hide();
$("#txtPasswordLogin").removeClass("loginError");
$("#errorMessageLogin").hide();
);
/*Function for encrypt*/
function encrypt(key1, key2, key3)
var key = btoa(key1 + ";
function validateFields () document.getElementById("txtPasswordLogin").value == "" )
$("#txtPasswordLogin").addClass('loginError');
$(".error_show_pass").show();
emptyPass = true;
if(emptyLogin == true ;
$('.password-inp').keypress(function(event)
if (event.keyCode == 13 );
$('#txtLogin').keypress(function(event)
if (event.keyCode == 13 );
$("#signin").click(function()
login();
);
function login()
if (validateFields() != false)
var user = document.getElementById("txtLogin").value;
var pass = document.getElementById("txtPasswordLogin").value;
var remember = $('.remember-me-check').prop('checked');
var keyUser = encrypt(user, pass, remember);
var parameters =
"key" : keyUser
;
$.ajax(
type: "POST",
url: "https://static.ssrn.com/cfc/webServices/loginServices.cfc?method=signinService",
data: parameters,
dataType: "jsonp",
async: false,
success: function(data)
if(data.ILOGINRESULT == 0)
var lngPartLogedIn = data.USER.PART_ID;
buildmenu(lngPartLogedIn);
$("#name-header div.user-name-overflow").text(data.USER.FULLNAME);
$("#name-mo-header").text(data.USER.FULLNAME);
$('#profile').show();
$("#btnSignin").hide();
$("#btnRegister").hide();
$loginBox.removeClass('open');
$body.removeClass('nav-is-open');
pageData.visitor.loginSuccess = "true";
pageData.visitor.loginStatus = "logged in";
pageData.visitor.accessType = "ss:registered-user";
pageData.visitor.userId = data.USER.ENCRYPT_PART_ID;
pageDataTracker.trackEvent( 'newPage' , pageData);
else
pageData.visitor.loginSuccess = "false";
pageDataTracker.trackEvent( 'newPage' , pageData);
$("#errorMessageLogin").html(data.MESSAGETOSHOW);
$("#errorMessageLogin").show();
);
else
return false;
;
;
function buildmenu(lngPartLogedIn)
$("#personal").attr("href", "https://hq.ssrn.com/Participant.cfm?rectype=edit&partid=" + lngPartLogedIn + "&perinf=y");
$("#affil").attr("href", "https://hq.ssrn.com/Affiliations/AffiliationList.cfm?partid=" + lngPartLogedIn);
$("#suscr").attr("href", "https://hq.ssrn.com/Subscriptions.cfm?partId=" + lngPartLogedIn);
$("#mypapers").attr("href", "https://hq.ssrn.com/submissions/MyPapers.cfm?partid=" + lngPartLogedIn);
;
$(document).click(function(event)
if(!$(event.target).closest('.header-tooltip').length && $(event.target)[0] != $('#btnSignin')[0] && $(event.target)[0] != $('#profile')[0] )
if($('.header-tooltip').is(":visible") && $('.mo-nav-header').is(":hidden"))
$body.removeClass('nav-is-open');
$('.header-tooltip').removeClass('open');
// Makes the submenu links accesible by keyboard
$('.has-sub-menu a')
.focus(function()
$(this).parents("li").addClass("focus");
)
.blur(function()
$(this).parents("li").removeClass("focus");
);
);
// Show translation notice on change
$('.dropdown-lang').on('change', function()
toggleTranslationNote();
);
// Accordion functionality on Footer MO
var $collapseBtn = $('h4[data-toggle="collapse"]'),
$collapsableContent = $('.collapsable');
$collapseBtn.on('click', function()
var $this = $(this),
$parent = $this.parent(),
$thisCollapsable = $parent.find('.collapsable');
$collapsableContent.slideUp('fast');
if ( !$thisCollapsable.is(":visible") )
$thisCollapsable.slideDown('fast');
);
// Show translation notice on footer
function toggleTranslationNote()
$('.translation-notice').toggle();
);
//Language function
function changeLanguage(lang)
var curretUrl = window.location.href;
if(curretUrl.indexOf('&lng') != -1)
var new_url = curretUrl.substring(0, curretUrl.indexOf('&lng'));
else
var new_url = window.location.href;
window.location.href=new_url+'&lng='+lang;
var paperTitle = "Mainstream Advertising on Rogue Websites in Hong Kong: A Comparison of Chinese and Western Titles";
var addthis_share = addthis_share || ;
addthis_share =
url: "https://ssrn.com/abstract=2468700",
passthrough :
twitter:
text: paperTitle + " @SSRN"
function trackEventSocial(platform)
pageDataTracker.trackEvent('socialShare',
social:
sharePlatform : platform
);
;
$('.addthis_button_facebook').click(function(e)
trackEventSocial('Facebook');
);
$('.addthis_button_twitter').click(function(e)
trackEventSocial('Twitter');
);
$('.addthis_button_citeulike').click(function(e)
trackEventSocial('CiteULike');
);
$('#socialEmail').click(function(e)
trackEventSocial('Email');
);
$('#permalink').click(function(e)
trackEventSocial('Permalink');
);
Copy URL
Copy URL
Mainstream Advertising on Rogue Websites in Hong Kong: A Comparison of Chinese and Western Titles
46 Pages
Posted: 21 Jul 2014
Date Written: July 20, 2014
Abstract
A number of studies have recently investigated the role played by mainstream internet advertising in supporting the revenue of rogue websites (Taplin, 2013). Such advertising by household names -- including multinational corporations, governments and charities -- generates enormous profit margins for operators of these websites, and present an ongoing threat to the viability of Hong Kong’s creative industries.
However, a recent study by Watters (2014a) indicated users were much more likely to be exposed to “high risk” advertising on such sites, relative to mainstream ads. Australia (Watters, 2014a), Singapore (Watters, 2013a), Canada (Watters, 2013b) and New Zealand (Watters, 2014b) all had mainstream ad prevalence rates of 1-10%, while high risk ads had prevalence rates of 90-99%. High risk ads are those which have the potential to cause harm to users, and include pornography, gambling, malware and scams.
These studies all investigated web pages that were sampled from Google’s ad transparency report for movies and TV shows or music downloads, having been verified as being in breach of the Digital Millennium Copyright Act (DMCA). However, the Google report is heavily biased towards Hollywood TV/movies and music in English, so another study (Watters, 2014c) investigated Hollywood content in Taiwan, where the sites were presented in Chinese. It was found that mainstream advertising was much more prevalent for locally-developed sites with Hollywood content, compared to viewing Hollywood content sites in the other countries examined. 61% of ads were Mainstream, while 39% were High Risk for local content. A key question remains whether Mainstream advertising would also be more prevalent not just for sites written in the local language, but also promoting local content (eg, a Chinese language website providing links to Chinese language titles).
In this study, we directly measured prevalence rates for High Risk versus Mainstream ads for local versus Hollywood content for movies/TV in Hong Kong. A sample of expert-identified rogue sites hosting local content was identified, and all ad banners comprising part of the sample were downloaded and identified, along with the ad network serving each banner. A comparable sample was taken from Google’s ad transparency report. For local content, 61.36% of movie and TV ads were Mainstream, while 38.64% were High Risk. In contrast, 3.84% of Hollywood ads were Mainstream, while 96.16% were High Risk. Like Taiwan, this suggests that Mainstream advertisers in Asia are being drawn to local language sites, whereas Mainstream advertising rates for Hollywood titles are similar to other countries.
In summary, local content sites were many times more likely to be displaying mainstream ads when compared to Hollywood content sites. The levels of mainstream advertising were almost identical to Taiwan for local content, and were similar to Canada, Singapore, Australia and New Zealand for Hollywood content.
The policy implications of this result and future research directions, including methodology enhancements, are discussed.
Keywords: Piracy, advertising, marketing, malware, advertising transparency
JEL Classification: K14, K42
Suggested Citation:
Suggested Citation
Watters, Paul, Mainstream Advertising on Rogue Websites in Hong Kong: A Comparison of Chinese and Western Titles (July 20, 2014). Available at SSRN: https://ssrn.com/abstract=2468700 or http://dx.doi.org/10.2139/ssrn.2468700
Register to save articles to
your library
Register
Paper statistics
based on a number of measures,
such as downloads and citations.
To be ranked, a paper must be a publicly available
scholarly full-text paper on SSRN.
Privately available papers
are not considered in these rankings." class="lbl">rank
$(document).ready(function()
if(navigator.appName == "Netscape" && navigator.appVersion.indexOf('Edge') > -1)
$('.related-journals-tooltip').css('top','32px');
if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1)
$('.related-journals-tooltip').css('right','5px');
);
var times = 0; // track the number of times the MORE link has been clicked (to avoid fraud)
// Track Recommendations appearances
function trackAppearances ()
times++; // to avoid fraud - we only track these the first time the additional recommendations are shown
var ab_id_source = '2468700';
var list_of_ab_id_target = '';
var initial_limit = '3';
var algorithm = '1';
var fraud = '0';
if (times == 1)
$.ajax(
url: 'TrackRecommendationsAppearances.cfm?ab_id_source=' + ab_id_source + '&list_of_ab_id_target=' + list_of_ab_id_target + '&initial_limit=' + initial_limit + '&algorithm=' + algorithm + '&fraud=' + fraud,
cache: false,
success: function(data)
);
Feedback
var strServer = "papers.ssrn.com";
var strSugPageName = "/sol3/papers.cfm";
var strIP = "153.92.0.15";
var strFullUrl = "papers%2Essrn%2Ecom%2Fsol3%2Fpapers%2Ecfm%3Fabstract%5Fid%3D2468700";
var sEmail = "";
var pkBaseURL = (("https:" == document.location.protocol) ? "https://piwik.ssrn.com/" : "http://piwik.ssrn.com/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
try
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 7);
piwikTracker.setCustomVariable(1, "User", "Unknown","visit");
piwikTracker.trackPageView();
piwikTracker.enableLinkTracking();
catch( err )
if (window.loadingTime)addLoadEvent(loadingTime);
setTimeout(function()var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//script.crazyegg.com/pages/scripts/0020/1063.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b), 1);
var d = new Date("2014-07-21 09:58:05.0");
var seconds = Math.floor(d.getTime() / 1000);
var abstractObj =
format : 'MIME-HTML',
id : "2468700",
onlineDate : "" + seconds + "",
title : "Mainstream Advertising on Rogue Websites in Hong Kong: A Comparison of Chinese and Western Titles",
type : 'XOCS-JOURNAL:SCOPE-ABSTRACT:PREPRINT'
var arrAbstract=;
arrAbstract.push(abstractObj);
pageData["content"] = arrAbstract;
pageDataTracker.trackPageLoad();

