1 | <html> |
---|
2 | <head> |
---|
3 | <script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script><title> </title> |
---|
4 | |
---|
5 | <script type="text/javascript"> |
---|
6 | function bredir(domain, url, ref, landerView, landerUrl, ldr, ifc) { |
---|
7 | var widthDiff, heightDiff, banner; |
---|
8 | var width = 0; |
---|
9 | var height = 0; |
---|
10 | var match = false; |
---|
11 | var l = false; |
---|
12 | |
---|
13 | // width, height, mystery 3rd value |
---|
14 | var bannerSizes = [ |
---|
15 | [300, 250, false], |
---|
16 | [250, 250, false], |
---|
17 | [240, 400, false], |
---|
18 | [336, 280, false], |
---|
19 | [180, 150, false], |
---|
20 | [468, 60, false], |
---|
21 | [234, 60, false], |
---|
22 | [88, 31, false], |
---|
23 | [120, 90, false], |
---|
24 | [120, 60, false], |
---|
25 | [120, 240, false], |
---|
26 | [125, 125, false], |
---|
27 | [728, 90, false], |
---|
28 | [160, 600, false], |
---|
29 | [120, 600, false], |
---|
30 | [300, 600, false], |
---|
31 | [300, 125, false], |
---|
32 | [530, 300, false], |
---|
33 | [190, 200, false], |
---|
34 | [470, 250, false], |
---|
35 | [720, 300, true], |
---|
36 | [500, 350, true], |
---|
37 | [550, 480, true], |
---|
38 | //YouTube: |
---|
39 | [560, 315, true], |
---|
40 | [640, 360, true], |
---|
41 | [853, 480, true], |
---|
42 | [1280, 720, true], |
---|
43 | //Vimeo: |
---|
44 | [400, 300, true], |
---|
45 | [500, 281, true], |
---|
46 | //Hulu: |
---|
47 | [480, 270, true], |
---|
48 | [512, 288, true], |
---|
49 | //metacafe: |
---|
50 | [440, 248, true], |
---|
51 | [460, 284, true], |
---|
52 | [540, 304, true], |
---|
53 | [600, 338, true], |
---|
54 | //Other dimensions (metacafe, myspace video, yahoo video, break.com, ustream, vevo, justin.tv, etc): |
---|
55 | [210, 120, true], |
---|
56 | [400, 300, true], |
---|
57 | [425, 350, true], |
---|
58 | [425, 360, true], |
---|
59 | [435, 251, true], |
---|
60 | [435, 271, true], |
---|
61 | [500, 300, true], |
---|
62 | [525, 295, true], |
---|
63 | [575, 324, true], |
---|
64 | [620, 389, true], |
---|
65 | [624, 351, true], |
---|
66 | [630, 381, true], |
---|
67 | [640, 385, true], |
---|
68 | [650, 368, true], |
---|
69 | [1000, 562, true], |
---|
70 | [1000, 563, true], |
---|
71 | [1000, 564, true] |
---|
72 | ]; |
---|
73 | |
---|
74 | // specific iframe sizes to show blank |
---|
75 | // width/height = true means wildcard |
---|
76 | var hiddenIfcSizes = [ |
---|
77 | { width:true, height:1000, domains:['.facebook.com'] } |
---|
78 | ]; |
---|
79 | |
---|
80 | if (typeof window.innerHeight == "number") { |
---|
81 | height = window.innerHeight; |
---|
82 | width = window.innerWidth; |
---|
83 | } else if (typeof document.body.offsetHeight == "number") { |
---|
84 | height = document.body.offsetHeight; |
---|
85 | width = document.body.offsetWidth; |
---|
86 | } |
---|
87 | |
---|
88 | //iframe check, if ifc, iframe = true |
---|
89 | if (top != self) { |
---|
90 | ifc = 1; |
---|
91 | } else { |
---|
92 | ifc = 0; |
---|
93 | } |
---|
94 | |
---|
95 | for (var n = 0; n < bannerSizes.length; n++) { |
---|
96 | banner = bannerSizes[n]; |
---|
97 | widthDiff = Math.abs(width - banner[0]); |
---|
98 | heightDiff = Math.abs(height - banner[1]); |
---|
99 | |
---|
100 | if (widthDiff <= 2 && heightDiff <= 2) { |
---|
101 | match = true; |
---|
102 | l = banner[2]; |
---|
103 | break; |
---|
104 | } |
---|
105 | } |
---|
106 | |
---|
107 | if (width === 0 && height === 0) { |
---|
108 | return; |
---|
109 | } |
---|
110 | |
---|
111 | // check for hidden size case |
---|
112 | // 3 conditions |
---|
113 | // must be in iframe |
---|
114 | // can use wildcard width (true) or match exact |
---|
115 | // can use wildcard height (true) or match exact |
---|
116 | for (n = 0; n < hiddenIfcSizes.length; n++) { |
---|
117 | ifcSize = hiddenIfcSizes[n]; |
---|
118 | if (ifc == 1 |
---|
119 | && (ifcSize.width === true || ifcSize.width == width) |
---|
120 | && (ifcSize.height === true || ifcSize.height == height) |
---|
121 | ) { |
---|
122 | for (var i = 0; i < ifcSize.domains.length; i++) { |
---|
123 | validDomain = ifcSize.domains[i]; |
---|
124 | if (domain.slice(-Math.abs(validDomain.length)) === validDomain || validDomain === '.') { |
---|
125 | return; |
---|
126 | } |
---|
127 | } |
---|
128 | } |
---|
129 | } |
---|
130 | |
---|
131 | if (domain != "www.facebook.com" |
---|
132 | && domain != "platform.twitter.com" |
---|
133 | && (match || (width < 100 && width !== 0) || (height < 100 && height !== 0)) |
---|
134 | ) { |
---|
135 | if (l && self == parent) { |
---|
136 | return; |
---|
137 | } |
---|
138 | return "/banner.php?w=" + width + "&h=" + height + "&d=" + domain + "&url=" + url + "&ref=" + ref + "&view=" + landerView; |
---|
139 | } else if ((domain == "www.facebook.com" || domain == "platform.twitter.com") |
---|
140 | && (width >= 250 && height >= 60) |
---|
141 | && (match || (width < 100 && width !== 0) || (height < 100 && height !== 0)) |
---|
142 | ) { |
---|
143 | if (l && self == parent) { |
---|
144 | return; |
---|
145 | } |
---|
146 | return landerUrl + "&w=" + width + "&h=" + height + "&ldr=" + "b" + "&ifc=" + ifc; |
---|
147 | } else if ((domain == "www.facebook.com" || domain == "platform.twitter.com") |
---|
148 | && (width < 250 || height < 60) |
---|
149 | && (match || (width < 100 && width !== 0) || (height < 100 && height !== 0)) |
---|
150 | ) { |
---|
151 | if (l && self == parent) { |
---|
152 | return; |
---|
153 | } |
---|
154 | return "/banner.php?w=" + width + "&h=" + height + "&d=" + domain + "&url=" + url + "&ref=" + ref + "&view=" + landerView; |
---|
155 | } else { |
---|
156 | return landerUrl + "&w=" + width + "&h=" + height + "&ifc=" + ifc; |
---|
157 | } |
---|
158 | } |
---|
159 | function bdetect() { |
---|
160 | var loc = bredir( |
---|
161 | 'gimp.promotionalpromos.com', |
---|
162 | 'gimp.promotionalpromos.com%2Fgimp%2Fv2.8%2Fgimp-2.8.10.tar.bz2', |
---|
163 | '', |
---|
164 | 'error', |
---|
165 | '/main?wc=EWJnEhd6BhNfBxBxGAkAFQ%3D%3D&url=gimp.promotionalpromos.com%2Fgimp%2Fv2.8%2Fgimp-2.8.10.tar.bz2' |
---|
166 | ); |
---|
167 | |
---|
168 | if(typeof loc === 'undefined') { |
---|
169 | self.close(); |
---|
170 | return; |
---|
171 | } |
---|
172 | |
---|
173 | location.replace(loc); |
---|
174 | |
---|
175 | } |
---|
176 | </script> |
---|
177 | </head> |
---|
178 | <body onLoad="bdetect()" style="margin: 0px;"> |
---|
179 | <noscript> |
---|
180 | <iframe frameborder="0" src="/main?wc=EWJnEhd6BhNfBxBxGAkAFQ%3D%3D&url=gimp.promotionalpromos.com%2Fgimp%2Fv2.8%2Fgimp-2.8.10.tar.bz2" width="100%" height="100%"></iframe> |
---|
181 | </noscript> |
---|
182 | <script type="text/javascript">if(!NREUMQ.f){NREUMQ.f=function(){NREUMQ.push(["load",new Date().getTime()]);var e=document.createElement("script");e.type="text/javascript";e.src=(("http:"===document.location.protocol)?"http:":"https:")+"//"+"js-agent.newrelic.com/nr-100.js";document.body.appendChild(e);if(NREUMQ.a)NREUMQ.a();};NREUMQ.a=window.onload;window.onload=NREUMQ.f;};NREUMQ.push(["nrfj","beacon-6.newrelic.com","01957cb5b6","2615933","YlxaMhZTCERSUUwIClsWbRQNHQ9ZV1dATxVdSQ==",0,4,new Date().getTime(),"","","","",""]);</script></body> |
---|
183 | </html> |
---|