Hello.
I've got an ad script in Google Adsense service page.
this is below:
1.
<script type="text/javascript"><!--
google_ad_client = "ca-pub-1234567890";
/* 120x600_Region/House */
google_ad_slot = "xxxxxxxxxxx";
google_ad_width = 120;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
And the following ad script is what I've got using adsense host api:
2.
<script type="text/javascript"><!--
google_ad_client = "ca-pub-0987654321";
google_ad_host = "ca-host-pub-1357924680";
/* Web 200x300 */
google_ad_slot = "yyyyyyyyyy";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
There is a difference between scripts(first script has no 'google_ad_host = ca-host-pub-1357924680', but second script has), so I'd like to add 'google_ad_host = ca-host-pub-1357924680' to the second script.
At this moment, I have a question. If I add the line, does the second script work properly? I wonder if google's 'earning distribution process' will work normally in this case.
Thank you.