b87beac568802e283de8f7e96d607d218459b8cb
[rhynodge.git] / src / main / java / net / pterodactylus / rhynodge / filters / comics / scandinavia-and-the-world.html
1
2 <!DOCTYPE html>
3 <html lang="en" itemscope itemtype="http://schema.org/Product">
4 <head>
5         <meta charset="utf-8">
6         <meta http-equiv="X-UA-Compatible" content="IE=edge">
7         <meta name="viewport" content="width=device-width, initial-scale=1">
8
9         <title>The whale in the room - Scandinavia and the World</title>
10         <meta name="DESCRIPTION" content="Webcomic: I was talking with a woman from the Netherlands and somehow we ended up talking about how our countries treat stranded marine life" />
11
12         <!-- Schema.org markup for Google+ -->
13         <meta itemprop="name" content="The whale in the room - Scandinavia and the World">
14         <meta itemprop="description" content="Webcomic: I was talking with a woman from the Netherlands and somehow we ended up talking about how our countries treat stranded marine life">
15         <meta itemprop="image" content="http://satwcomic.com/art/300_thumb/the-whale-in-the-room.png">
16
17         <!-- Twitter Card data -->
18         <meta name="twitter:card" content="product">
19         <meta name="twitter:site" content="@satwcomic">
20         <meta name="twitter:title" content="The whale in the room - Scandinavia and the World">
21         <meta name="twitter:description" content="Webcomic: I was talking with a woman from the Netherlands and somehow we ended up talking about how our countries treat stranded marine life">
22         <meta name="twitter:creator" content="@satwcomic">
23         <meta name="twitter:image" content="http://satwcomic.com/art/300_thumb/the-whale-in-the-room.png">
24         <meta name="twitter:data1" content="Comic">
25         <meta name="twitter:label1" content="The whale in the room">
26         <meta name="twitter:data2" content=":)">
27         <meta name="twitter:label2" content=":D">
28
29         <!-- Open Graph data -->
30         <meta property="og:title" content="The whale in the room - Scandinavia and the World" />
31         <meta property="og:type" content="website" />
32         <meta property="og:url" content="http://satwcomic.com/the-whale-in-the-room" />
33         <meta property="og:image" content="http://satwcomic.com/art/300_thumb/the-whale-in-the-room.png" />
34         <meta property="og:description" content="Webcomic: I was talking with a woman from the Netherlands and somehow we ended up talking about how our countries treat stranded marine life" />
35         <meta property="og:site_name" content="Scandinavia and the World" />
36         <meta property="fb:app_id" content="992325017452040" />
37         <meta property="og:image:width" content="300" />
38         <meta property="og:image:height" content="300" />
39
40         <script type="application/ld+json">
41     {
42       "@context": "http://schema.org",
43       "@type": "Organization",
44       "url": "http://satwcomic.com",
45       "logo": "http://satwcomic.com/img_satwcomic/schema.png"
46     }
47     </script>
48
49         <meta name="KEYWORDS" content="webcomic,comic" />
50         <meta name="robots" content="index, follow" />
51
52         <link rel="icon" type="image/ico" href="http://satwcomic.com/favicon.ico" />
53         <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="http://feeds.feedburner.com/satwcomic" />
54
55         <script>
56                 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
57                                         (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
58                                 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
59                 })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
60                 ga('create', 'UA-93915-32', 'auto');
61                 ga('send', 'pageview');
62         </script>
63
64
65
66         <link href="http://satwcomic.com/satwcomic_3_bootstrap.min.css" rel="stylesheet">
67         <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
68         <link rel="stylesheet" href="http://satwcomic.com/satwcomic_3_style.css" type="text/css" />
69         <link rel="stylesheet" href="http://satwcomic.com/bootcore_4.css" type="text/css">
70
71
72
73         <script type="text/javascript" language="JavaScript">
74                 function moveCaretToEnd(el) {
75                         if (typeof el.selectionStart == "number") {
76                                 el.selectionStart = el.selectionEnd = el.value.length;
77                         } else if (typeof el.createTextRange != "undefined") {
78                                 el.focus();
79                                 var range = el.createTextRange();
80                                 range.collapse(false);
81                                 range.select();
82                         }
83                 }
84
85                 function reply_click(clicked_id) {
86                         var textBoxValue = clicked_id;
87                         document.forms['commentform'].elements['comt'].value = document.forms['commentform'].elements['comt'].value + '@' + textBoxValue + ' ';
88
89                         var text_input = document.forms['commentform'].elements['comt'];
90                         text_input.focus ();
91
92                         moveCaretToEnd(text_input);
93
94                         // Work around Chrome's little problem
95                         window.setTimeout(function() {
96                                 moveCaretToEnd(text_input);
97                         }, 1);
98
99                 }
100                 function makeFrame(comment_id) {
101                         document.getElementById(comment_id).innerHTML = comment_id + '<br /><iframe src="http://satwcomic.com/singlecomment.php?hash=' + comment_id + '" width="500" height="65" style="border: 1px solid grey;" marginheight="0" marginwidth="0" frameborder="0" scrolling="yes"></iframe><br />';
102                 }
103
104                 function reply_to_comment(clicked_id)
105                 {
106                         var COMMENT_ID_PREFIX = 'comid_';
107
108                         var reply_comment_box = $('#reply_div');
109                         $(reply_comment_box).find('span').text(clicked_id);
110                         $(reply_comment_box).find('#parent_links').val(clicked_id);
111
112                         var originalName = $('#' + COMMENT_ID_PREFIX + clicked_id).find('.getName').text();
113                         $(reply_comment_box).find('textarea').val('@' + originalName + ' ');
114
115                         $('#' + COMMENT_ID_PREFIX + clicked_id).append(reply_comment_box);
116                         $('#reply_div').show(0);
117                 }
118
119                 if (typeof expandCommentsButton=='undefined')
120                         var expandCommentsButton = 'show replies';
121
122                 if (typeof collapseCommentsButton=='undefined')
123                         var collapseCommentsButton = 'hide replies';
124
125                 function expand_replies(clicked_id)
126                 {
127                         // FIRST UNCHECK THE EXPAND/COLLAPSE BOTH RADIO BUTTONS, BECAUSE SOMEONE HAS JUST CLICKED AN INDIVIDUAL
128                         // EXPAND/CONTRACT BUTTON (THE + AND - ON EACH COMMENT).
129                         console.log('Expand_replies for id: ' + clicked_id);
130                         $('input[name=expand_comments]').removeAttr('checked');
131                         var plusMinus = $('#' + clicked_id).find('.expand_replies').text();
132                         console.log('Expand_replies plusMinus:' + plusMinus + '<--');
133                         if (plusMinus == expandCommentsButton)
134                         {
135                                 console.log('Expand_replies processing expand request for id:' + clicked_id + '<--');
136                                 $('#' + clicked_id).find('.expand_replies').text(collapseCommentsButton);
137                                 console.log('Expand_replies: switched button to contract');
138                                 var index = clicked_id.length + 1;
139                                 console.log('Expand_replies: about to loop, index: ' + index);
140                                 $('.commentall').each(function()
141                                 {
142                                         var replyId = $(this).attr('id');
143                                         console.log('Expand_replies: looping, replyId:' + replyId + '<--');
144                                         if ((clicked_id + '-') == replyId.substring(0, index))
145                                         {
146                                                 console.log('Expand_replies: looping, found match: replyId.lastIndexOf dash is: ' + replyId.lastIndexOf('-') + ' index is: ' + index);
147                                                 // THIS WILL SHOW THE REPLY AT THE NEXT HIGHEST LEVEL
148                                                 if (replyId.lastIndexOf('-') <= index)
149                                                 {
150                                                         console.log('Expand_replies processing opening id:' + replyId + '<--');
151                                                         $('#' + replyId).show(0).data('is_open', '1');
152                                                 }
153                                                 else
154                                                 {
155                                                         // THIS WILL SHOW THE REPLIES AT LOWER LEVELS, IF THEY WERE ALREADY OPENED AND LEFT OPEN
156                                                         if ($('#' + replyId).data('is_open') == '1')
157                                                                 $('#' + replyId).show(0);
158                                                 }
159                                         }
160                                 });
161                         }
162                         else if (plusMinus == collapseCommentsButton)
163                         {
164                                 console.log('Expand_replies processing contract request for id:' + clicked_id + '<--');
165                                 $('#' + clicked_id).find('.expand_replies').text(expandCommentsButton);
166                                 var index = clicked_id.length + 1;
167                                 $('.commentall').each(function()
168                                 {
169                                         var replyId = $(this).attr('id');
170                                         if ((clicked_id + '-') == replyId.substring(0, index))
171                                         {
172                                                 // THIS WILL HIDE ALL REPLIES THAT ARE AT A LOWER LEVEL.
173                                                 // THE if PART WILL HIDE THE FIRST LEVEL
174                                                 if (replyId.lastIndexOf('-') <= index)
175                                                 {
176                                                         $('#' + replyId).hide(0).data('is_open', '0');
177                                                 }
178                                                 else // THIS WILL HIDE ANYTHING LOWER THAN THE FIRST LEVEL, WHILE STILL SIGNALLING IF THEY WERE ALREADY OPENED
179                                                         $('#' + replyId).hide(0);
180                                         }
181                                 });
182                         }
183                 }
184                 function tally_vote(upDown, commentId)
185                 {
186                         console.log('vote for ' + upDown + ' from: ' + commentId);
187
188                         $('#expand').find('#fieldToUpdate').val(upDown);
189                         console.log('after first find/val');
190                         $('#expand').find('#votingCommentId').val(commentId);
191                         console.log('after second find/val');
192                         // UPDATE THE COMMENTS TABLE WITH THE VOTE
193                         $('#expand').submit();
194                         console.log('after triggering submit');
195                 }
196
197
198         </script>
199
200 </head>
201 <body>
202
203
204 <div id="fb-root"></div>
205 <script>(function(d, s, id) {
206         var js, fjs = d.getElementsByTagName(s)[0];
207         if (d.getElementById(id)) return;
208         js = d.createElement(s); js.id = id;
209         js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.4&appId=129521600468289";
210         fjs.parentNode.insertBefore(js, fjs);
211 }(document, 'script', 'facebook-jssdk'));</script>
212
213 <div class="container">
214         <div class="row">
215                 <div class="col-md-4">
216                         <center>
217                                 <a href="http://satwcomic.com/" title="Scandinavia and the World"><img src="http://satwcomic.com/img_satwcomic/denmarklogo7.png" width="340" style="max-width: 100%; height: auto; margin-top: 10px;" height="167" alt="Scandinavia and the World" title="Scandinavia and the World" /></a>
218                         </center>
219                 </div>
220                 <div class="col-md-8">
221                         <center><div style="width: 728px; max-width: 100%; overflow: hidden; text-align: center;  height: 117px; margin-bottom: 10px; z-index:-100;">
222                                 <small style="color: #b4b4b4; font-size: 12px;">advert</small><br />
223                                 <script type="text/javascript" src="http://ap.lijit.com/www/delivery/fpi.js?z=296726&u=MepsuLtd&width=728&height=90"></script>
224                         </div></center>
225                         <div style="width: 100%; max-width: 728px; text-align: center;" class="hidden-xs">
226                                 <!--<a href="http://satwcomic.com/store/finland-pin"><img src="http://satwcomic.com/up1loader/finn-pin-tiny.png" width="38" style="max-width: 100%; height: auto; margin-top: 0;" height="50" alt="Finn Pin" title="New Finn Pin" /></a> &nbsp; -->
227                                 <a href="https://www.patreon.com/SatW" title="Support Scandinavia and the World" target="_blank"><img src="http://satwcomic.com/img_satwcomic/become-patron.png" width="260" style="max-width: 100%; height: auto; margin-top: 0;" height="50" alt="Patreon Logo" title="Support Scandinavia and the World via Patreon" /></a>
228                                 <!--<a href="https://www.patreon.com/creation?hid=2308571" title="Map of Europe" target="_blank"><img src="http://satwcomic.com/up1loader/micro-map.png" width="63" style="max-width: 100%; height: auto; margin-top: 0;" height="50" alt="Patreon Logo" title="Patreon Map" /></a>-->
229                         </div>
230                 </div>
231         </div>
232
233         <nav class="navbar navbar-default">
234                 <div class="container-fluid">
235                         <div class="navbar-header">
236                                 <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
237                                         <span class="sr-only">Toggle navigation</span>
238                                         <span class="icon-bar"></span>
239                                         <span class="icon-bar"></span>
240                                         <span class="icon-bar"></span>
241                                 </button>
242                                 <a class="navbar-brand" href="http://satwcomic.com/" class="pull-left"><img src="http://satwcomic.com/up1loader/satw-logo-smler.png" title="Home" style="width:100%; height: auto; margin-top: -1px;"></a>
243                         </div>
244                         <div class="navbar-collapse collapse" id="bs-example-navbar-collapse-1" aria-expanded="false" style="height: 1px;">
245                                 <ul class="nav navbar-nav">
246                                         <li><a href="http://satwcomic.com/the-world"><span class="glyphicon glyphicon-picture" aria-hidden="true"></span> Comics</a></li>
247                                         <li><a href="http://satwcomic.com/animations"><span class="glyphicon glyphicon-film" aria-hidden="true"></span> Animation</a></li>
248                                         <!--<li><a href="http://satwcomic.com/store"><span class="glyphicon glyphicon-shopping-cart" aria-hidden="true"></span> Store</a></li>-->
249                                         <li><a href="http://satwcomic.com/wiki"><span class="glyphicon glyphicon-book" aria-hidden="true"></span> Wiki</a></li>
250                                         <li class="dropdown">
251                                                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><span class="glyphicon glyphicon-heart" aria-hidden="true"></span> Support Us<span class="caret"></span></a>
252                                                 <ul class="dropdown-menu" role="menu">
253                                                         <li><a href="https://www.patreon.com/SatW" target="_blank">Via Patreon</a></li>
254                                                         <li><a href="http://satwcomic.com/donate">Via PayPal</a></li>
255                                                         <!--<li><a href="http://satwcomic.com/store"><span class="glyphicon glyphicon-shopping-cart" aria-hidden="true"></span> Via our Store</a></li>-->
256                                                         <li><a href="http://satwcomic.com/gold-supporter">Gold Membership Info</a></li>
257                                                         <li><a href="http://satwcomic.com/custom-portraits"><span class="glyphicon glyphicon-user" aria-hidden="true"></span> Custom Portraits</a></li>
258                                                         <li><a href="http://satwcomic.com/rewards"><span class="glyphicon glyphicon-star" aria-hidden="true"></span> Rewards</a></li>
259                                                 </ul>
260                                         </li>
261                                         <li><a href="http://satwcomic.com/forums"><span class="glyphicon glyphicon-comment" aria-hidden="true"></span> Forum</a></li>
262                                         <li class="dropdown">
263                                                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><span class="glyphicon glyphicon-user" aria-hidden="true"></span> You<span class="caret"></span></a>
264                                                 <ul class="dropdown-menu" role="menu">
265                                                         <li><a href="http://satwcomic.com/login" rel="nofollow">Sign In</a></li>
266                                                         <li><a href="http://satwcomic.com/join" rel="nofollow">Create Account</a></li>
267                                                 </ul>
268                                         </li>
269
270                                         <li class="dropdown">
271                                                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><span class="glyphicon glyphicon-chevron-down" aria-hidden="true"></span> Follow Us<span class="caret"></span></a>
272                                                 <ul class="dropdown-menu" role="menu">
273                                                         <li><a href="http://www.facebook.com/SatWcomic" rel="nofollow" target="_blank" title="Facebook Updates"><img src="http://satwcomic.com/imgs/facebook_16.png" width="16" height="16" alt="" /> Facebook</a></a></li>
274                                                         <li><a href="http://twitter.com/satwcomic" rel="nofollow" target="_blank" title="Twitter, links to the latest comics"><img src="http://satwcomic.com/imgs/twitter3_16.png" width="16" height="16" alt="" /> Twitter</a></a></li>
275                                                         <li><a href="http://satw.us/" rel="nofollow" target="_blank" title="Tumblr"><img src="http://satwcomic.com/imgs/tumblr_16.png" width="16" height="16" alt="" /> Tumblr</a></a></li>
276                                                         <li><a href="https://www.youtube.com/user/SatWcomic" rel="nofollow" target="_blank" title="YouTube"><img src="http://satwcomic.com/imgs/youtube_16.png" width="16" height="16" alt="" /> YouTube</a></a></li>
277                                                         <li><a href="http://www.reddit.com/r/SatWcomic" rel="nofollow" target="_blank" title="Reddit"><img src="http://satwcomic.com/imgs/reddit_16.png" width="16" height="16" alt="" /> Reddit</a></a></li>
278                                                         <li><a href="https://plus.google.com/+scandinaviaandtheworld/" rel="nofollow" target="_blank" title="Google+"><img src="http://satwcomic.com/imgs/gplus_16.png" width="16" height="16" alt="" /> Google+</a></a></li>
279                                                         <li><a href="http://feeds.feedburner.com/satwcomic" rel="nofollow" target="_blank" title="RSS Feed"><img src="http://satwcomic.com/imgs/rss_16.png" width="16" height="16" alt="" /> RSS</a></a></li>
280                                                         <li><a href="http://tapastic.com/series/Scandinavia-and-the-World" rel="nofollow" target="_blank" title="Tapastic"><img src="http://satwcomic.com/imgs/tap_16.png" width="16" height="16" alt="" /> Tapastic</a></a></li>
281                                                         <li><a href="http://imgur.com/user/SatWcomic/submitted" rel="nofollow" target="_blank" title="Imgur"><img src="http://satwcomic.com/imgs/imgur_16.png" width="16" height="16" alt="" /> Imgur</a></a></li>
282                                                 </ul>
283                                         </li>
284                                 </ul>
285                                 <!--<ul class="nav navbar-nav navbar-right">
286                                         <li><a href="http://satwcomic.com/search"><span class="glyphicon glyphicon-search" aria-hidden="true"></span></a></li>
287                                   </ul>-->
288                         </div>
289                 </div>
290         </nav>
291
292
293
294
295         <div class="btn-group btn-group-justified">
296                 <a href="http://satwcomic.com/sweden-denmark-and-norway" class="btn btn-default bred" title="Scandinavia and the World from the beginning"><span
297                                 class="glyphicon glyphicon-fast-backward"></span></a>
298                 <a href="http://satwcomic.com/banana-republic" title="Banana Republic (alt+p)" accesskey="p" class="btn btn-default bred"><span
299                                 class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span></a>
300                 <a href="http://satwcomic.com/family-photo" class="btn btn-default bred" title="Random Comic"><span class="glyphicon glyphicon-random" aria-hidden="true"></span></a>
301
302
303         </div>
304         <center><a href="http://satwcomic.com/banana-republic"><img src="http://satwcomic.com/art/the-whale-in-the-room.png" width="600" itemprop="image" title="The whale in the room"
305                                                                                                                                 height="1182" alt="The whale in the room satwcomic.com" style="max-width: 100%; height: auto; margin: 3px;" /></a></center>
306         <div class="row">
307                 <div class="col-md-9">
308                         <h1 itemprop="headline">The whale in the room</h1>
309                         <hr />
310                         <span itemprop="articleBody">I was talking with a woman from the Netherlands and somehow we ended up talking about how our countries treat stranded marine life. Of course the Netherlands have regular beaches where whales can get stranded, but the first thing that popped into my head were whales flopping over the sides of Netherlands&#039; dams.</span><br />
311                         <br />
312
313                         <small> 25th August 2015  </small>
314                         <div class="btn-group btn-group-justified">
315                                 <a href="http://satwcomic.com/sweden-denmark-and-norway" class="btn btn-default bred" title="Scandinavia and the World from the beginning"><span
316                                                 class="glyphicon glyphicon-fast-backward"></span></a>
317                                 <a href="http://satwcomic.com/banana-republic" title="Banana Republic (alt+p)" accesskey="p" class="btn btn-default bred"><span
318                                                 class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span></a>
319                                 <a href="http://satwcomic.com/family-photo" class="btn btn-default bred" title="Random Comic"><span class="glyphicon glyphicon-random" aria-hidden="true"></span></a>
320
321
322                         </div>
323                         <br /><center> <small>Tagged in</small>  <a href="http://satwcomic.com/the-world/Whale" class="btn btn-default btn-sm">Whale</a>  <a href="http://satwcomic.com/the-world/Netherlands" class="btn btn-default btn-sm">Netherlands</a>  <a href="http://satwcomic.com/the-world/denmark" class="btn btn-default btn-sm">Denmark</a> </center>
324                 </div>
325                 <div class="col-md-3">
326                         <br />
327                         <a href="https://www.patreon.com/SatW">Please support SatW via <b style="color: #e6461a;"><img src="http://satwcomic.com/imgs/patreon2_16.png" width="16" height="16" /> Patreon</b></a><br />
328                         <br />
329
330
331
332                         <small>Share Scandinavia and the World:</small><br />
333                         <br />
334                         <iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsatwcomic.com%2Fthe-whale-in-the-room&amp;send=false&amp;layout=button_count&amp;width=450&amp;show_faces=false&amp;font=tahoma&amp;colorscheme=light&amp;action=like&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe><br />
335                         <br />
336                         <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://satwcomic.com/the-whale-in-the-room" data-text="The whale in the room" data-via="satwcomic">Tweet</a>
337                         <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script><br />
338
339                         <br />
340                         <div style="width: 185px;">
341                                 <center>
342                                         <span style="font-family: tahoma,verdana,arial,sans-serif; font-size: 11px;">Latest comic in your News Feed:</span><br />
343                                         <div class="fb-page" data-href="https://www.facebook.com/SatWcomic" data-width="185" data-height="70" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="false" data-show-posts="false"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/SatWcomic"><a href="https://www.facebook.com/SatWcomic">Scandinavia and the World</a></blockquote></div></div>
344                                 </center>
345                         </div>
346
347                 </div>
348         </div>
349         <br />
350         <div class="row">
351
352                 <div class="col-sm-4">
353                         <center><div style="width: 300px; max-width: 100%; overflow: hidden; text-align: center;  height: 272px; margin-bottom: 10px; z-index:-100;">
354                                 <small style="color: #b4b4b4; font-size: 12px;">advert</small><br />
355                                 <script type="text/javascript" src="http://ap.lijit.com/www/delivery/fpi.js?z=296724&u=MepsuLtd&width=300&height=250"></script>
356                         </div></center>
357                 </div>
358                 <div class="col-sm-4">
359                         <center><div style="width: 300px; max-width: 100%; overflow: hidden; text-align: center;  height: 272px; margin-bottom: 10px; z-index:-100;">
360                                 <small style="color: #b4b4b4; font-size: 12px;">advert</small><br />
361                                 <script type="text/javascript" src="http://ap.lijit.com/www/delivery/fpi.js?z=296724&u=MepsuLtd&width=300&height=250"></script>
362                         </div></center>
363                 </div>
364                 <div class="col-sm-4">
365
366                         <div class="well" style="max-width: 400px;">
367                                 <p class="text-success">We have an awesome newsletter with 2,971 subscribers!</p>
368                                 <span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> Latest comic news<br />
369                                 <span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> Merchandise news<br />
370                                 <span class="glyphicon glyphicon-fire" aria-hidden="true"></span> Iceland's Demon Cat<br />
371                                 <span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> and more!<br />
372                                 <br />
373                                 <form method="post" action="http://satwcomic.com/newsletter/go" class="form-horizontal">
374                                         <input type="email" name="email" class="form-control input-lg" required placeholder="Email address"><br />
375                                         <button type="submit" class="btn btn-success" name="join">Subscribe</button> <img src="http://satwcomic.com/up1loader/cat-in-letter.png" width="60" height="67" alt="" title="Iceland's Cat" class="pull-right" /><br />
376                                 </form>
377                         </div>
378
379                 </div>
380         </div>
381         <div id="comments">&nbsp;</div>
382         57 Comments: <br /><div id="commentbox">&nbsp;</div>
383         <form action="http://satwcomic.com/the-whale-in-the-room" method="post" name="expand" id="expand">
384                 <label for="expand_comments">expand all: </label>
385                 <input type="radio" name="expand_comments" id="expand_comments" value="expand" >
386                 <label for="collapse_comments">collapse all: </label>
387                 <input type="radio" name="expand_comments" id="collapse_comments" value="collapse" >
388                 <span style="font-weight: bold; margin-left: 15%;">sort by: </span>
389                 <label for="sort_votes">votes</label>
390                 <input type="radio" name="sort_order" value="votes_approval" id="sort_votes" checked onclick="this.form.submit()">
391                 <label for="sort_date">date</label>
392                 <input type="radio" name="sort_order" value="date" id="sort_date"  onclick="this.form.submit()">
393
394
395                 <span style="font-weight: bold; margin-left: 3%;">direction: </span>
396                 <label for="sort_asc">ascending</label>
397                 <input type="radio" name="asc_desc" value="ASC"  id="sort_asc"  onclick="this.form.submit()">
398                 <label for="sort_desc">descending</label>
399                 <input type="radio" name="asc_desc" value="DESC" id="sort_desc"  onclick="this.form.submit()">
400
401                 <input type="hidden" id="fieldToUpdate" name="fieldToUpdate" value="">
402                 <input type="hidden" id="votingCommentId" name="votingCommentId" value="">
403
404         </form>
405         <div class="commentall" id="comid_9400586" data-is-open="1"  style="display: block; margin-left: 0%;">
406                 <div class="commentleft">
407                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/photondancer" rel="nofollow">photondancer</a></span><br />
408                         <img src="http://satwcomic.com/imgs/stabby.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
409                         <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteO" title="O">O</span></a>   <br />
410
411
412
413                 </div>
414                 <div class="commentright">
415                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">9 hours ago</small> <small>#9400586</small> &nbsp;
416                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">6<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
417                         <br />
418                         I really love the fact that Denmark gave the whale his beer. He&#039;s such a softy :-)
419                         <br /><br /><div class="expand_div"><span onclick="expand_replies('comid_9400586')" class="expand_replies fake_link btn btn-warning" onmouseover="this.style.textDecoration = 'underline'; this.style.cursor = 'pointer'" onmouseout="this.style.textDecoration = 'none'; this.style.cursor = 'inherit'">show replies</span></div>
420
421                 </div>
422                 <hr class="magic" />
423                 <br />
424         </div>
425
426         <br />
427
428         <div class="commentall" id="comid_9400586-9400642" data-is-open="0"  style="display: none; margin-left: 5%;">
429                 <div class="commentleft">
430                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/marcoreos" rel="nofollow">marcoreos</a></span><br />
431                         <img src="http://satwcomic.com/imgs/ice-helo.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
432                         <small><i>15</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteF" title="F">F</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/United-States.png" width="16"
433                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="United-States" /></a><br />
434
435
436
437                 </div>
438                 <div class="commentright">
439                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">6 hours ago</small> <small>#9400642</small> &nbsp;
440                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">0<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
441                         <br />
442                         @<a href="http://satwcomic.com/member/photondancer" rel="nofollow">photondancer</a> I think the whale took it when he turned away. No matter how sorry he feels, Denmark wouldn&#039;t just give away a beer like that...
443
444
445                 </div>
446                 <hr class="magic" />
447                 <br />
448         </div>
449
450         <br />
451
452         <div class="commentall" id="comid_9400660" data-is-open="1"  style="display: block; margin-left: 0%;">
453                 <div class="commentleft">
454                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/ryttyr" rel="nofollow">ryttyr</a></span><br />
455                         <img src="http://satwcomic.com/imgs/swe-pc.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
456                         <small><i>19</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteM" title="M">M</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/Sweden.png" width="16"
457                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="Sweden" /></a><br />
458
459
460
461                 </div>
462                 <div class="commentright">
463                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">5 hours ago</small> <small>#9400660</small> &nbsp;
464                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">2<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
465                         <br />
466                         He he. I like Denmark&#039;s way of hydrating the whale.<br />
467                         <br />
468                         BTW. Can we get an Iceland based comic soon? He is one of my favorite characters but he is not in the comic that often.
469
470
471                 </div>
472                 <hr class="magic" />
473                 <br />
474         </div>
475
476         <br />
477
478         <div class="commentall" id="comid_9400452" data-is-open="1"  style="display: block; margin-left: 0%;">
479                 <div class="commentleft">
480                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/bubba" rel="nofollow">bubba</a></span><br />
481                         <img src="http://satwcomic.com/imgs/sister-icespin.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
482                         <small><i>54</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteF" title="F">F</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/Iceland.png" width="16"
483                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="Iceland" /></a><br />
484
485
486
487                 </div>
488                 <div class="commentright">
489                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">20 hours ago</small> <small>#9400452</small> &nbsp;
490                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">2<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
491                         <br />
492                         Iceland would just have waited for the whale to die (or killed it) and ate the meat!<br />
493                         <br />
494                         Not really - the little dear would have been too sick to eat.
495
496
497                 </div>
498                 <hr class="magic" />
499                 <br />
500         </div>
501
502         <br />
503
504         <div class="commentall" id="comid_9400444" data-is-open="1"  style="display: block; margin-left: 0%;">
505                 <div class="commentleft">
506                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/riani" rel="nofollow">riani</a></span><br />
507                         <img src="http://satwcomic.com/imgs/dark-matter.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
508                         <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteF" title="F">F</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/United-States.png" width="16"
509                                                                                                                                                                                                                                                                                                                                                          height="16" alt="" title="United-States" /></a><br />
510
511
512
513                 </div>
514                 <div class="commentright">
515                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">21 hours ago</small> <small>#9400444</small> &nbsp;
516                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">2<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
517                         <br />
518                         Of course Denmark gives the whale a beer.
519
520
521                 </div>
522                 <hr class="magic" />
523                 <br />
524         </div>
525
526         <br />
527
528         <div class="commentall" id="comid_9400443" data-is-open="1"  style="display: block; margin-left: 0%;">
529                 <div class="commentleft">
530                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/gctwnl" rel="nofollow">gctwnl</a></span><br />
531                         <img src="http://satwcomic.com/imgs/nether-wave.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
532                         <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteM" title="M">M</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/Netherlands.png" width="16"
533                                                                                                                                                                                                                                                                                                                                                          height="16" alt="" title="Netherlands" /></a><br />
534
535
536
537                 </div>
538                 <div class="commentright">
539                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">21 hours ago</small> <small>#9400443</small> &nbsp;
540                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">2<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
541                         <br />
542                         That whale drinking beer. Brilliant!<br />
543                         <br />
544                         Actually, much of The Netherlands is not below sea level but roughly &#039;at&#039; sea level and it would only flood during a high tide.<br />
545                         <br />
546                         Maybe a good one for another comic: one of the reasons The Netherlands is below sea level in many places is that we pumped the water out of the ground to make the swamps, that was there originally in many places, dry. As a result, the ground compacted and The Netherlands got lower and lower over the centuries. Then we had to build higher dikes to keep the sea out. Self-inflicted in part...<br />
547                         <br />
548                         Another thing we have done is pumped gas out of the North of the country (used to be the biggest gas reserve in the world) and as a result the ground is compacting there as well. That also results in earthquakes strong enough to damage buildings there.
549                         <br /><br /><div class="expand_div"><span onclick="expand_replies('comid_9400443')" class="expand_replies fake_link btn btn-warning" onmouseover="this.style.textDecoration = 'underline'; this.style.cursor = 'pointer'" onmouseout="this.style.textDecoration = 'none'; this.style.cursor = 'inherit'">show replies</span></div>
550
551                 </div>
552                 <hr class="magic" />
553                 <br />
554         </div>
555
556         <br />
557
558         <div class="commentall" id="comid_9400443-9400487" data-is-open="0"  style="display: none; margin-left: 5%;">
559                 <div class="commentleft">
560                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/mathiasawk" rel="nofollow">mathiasawk</a></span><br />
561                         <img src="http://satwcomic.com/imgs/denm-rock.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
562                         <small><i>21</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteM" title="M">M</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/Denmark.png" width="16"
563                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="Denmark" /></a><br />
564
565
566
567                 </div>
568                 <div class="commentright">
569                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">19 hours ago</small> <small>#9400487</small> &nbsp;
570                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">0<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
571                         <br />
572                         @<a href="http://satwcomic.com/member/gctwnl" rel="nofollow">gctwnl</a> Very interesting. I call myself a history nerd, but somehow I&#039;d convinced myself that a lot of the Netherlands had been created recently, as all I knew about the Netherlands&#039; geography was that it depended a whole lot on the integrity of dams and dikes. Shit, now that I&#039;m writing it out it seems a whole lot more na&iuml;ve than I thought it would..
573
574
575                 </div>
576                 <hr class="magic" />
577                 <br />
578         </div>
579
580         <br />
581
582         <div class="commentall" id="comid_9400443-9400493" data-is-open="0"  style="display: none; margin-left: 5%;">
583                 <div class="commentleft">
584                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/97gleeina" rel="nofollow">97gleeina</a></span><br />
585                         <img src="http://satwcomic.com/imgs/jp-dn.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
586                         <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteO" title="O">O</span></a>   <br />
587
588
589
590                 </div>
591                 <div class="commentright">
592                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">18 hours ago</small> <small>#9400493</small> &nbsp;
593                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">0<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
594                         <br />
595                         @<a href="http://satwcomic.com/member/gctwnl" rel="nofollow">gctwnl</a>
596
597
598                 </div>
599                 <hr class="magic" />
600                 <br />
601         </div>
602
603         <br />
604
605         <div class="commentall" id="comid_9400443-9400603" data-is-open="0"  style="display: none; margin-left: 5%;">
606                 <div class="commentleft">
607                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/Asukotto" rel="nofollow">Asukotto</a></span><br />
608                         <img src="http://satwcomic.com/imgs/bonwash.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
609                         <small><i>29</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteM" title="M">M</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/Poland.png" width="16"
610                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="Poland" /></a><br />
611
612
613
614                 </div>
615                 <div class="commentright">
616                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">8 hours ago</small> <small>#9400603</small> &nbsp;
617                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">2<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
618                         <br />
619                         @<a href="http://satwcomic.com/member/gctwnl" rel="nofollow">gctwnl</a> There is another reason why Netherlands sinking: During The Ice Age, the mass of ice that lied on scandinavia, it shifted The Netherlands up. Now Nordic coutries growing in high, while Netherlands and parts of Belgium and Germany are sinking. <br />
620                         <br />
621                         Don&#039;t blame me, blame geology ^^&#039;
622
623
624                 </div>
625                 <hr class="magic" />
626                 <br />
627         </div>
628
629         <br />
630
631         <div class="commentall" id="comid_9400423" data-is-open="1"  style="display: block; margin-left: 0%;">
632                 <div class="commentleft">
633                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/Fundir" rel="nofollow">Fundir</a></span><br />
634                         <img src="http://satwcomic.com/imgs/king-den.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
635                         <small><i>21</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteM" title="M">M</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/Denmark.png" width="16"
636                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="Denmark" /></a><br />
637
638
639
640                 </div>
641                 <div class="commentright">
642                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">21 hours ago</small> <small>#9400423</small> &nbsp;
643                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">2<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
644                         <br />
645                         Yay the whale hvalborg! &lt;3 (they got the name from a danish song)
646
647
648                 </div>
649                 <hr class="magic" />
650                 <br />
651         </div>
652
653         <br />
654
655         <div class="commentall" id="comid_9400419" data-is-open="1"  style="display: block; margin-left: 0%;">
656                 <div class="commentleft">
657                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/Dutchbag" rel="nofollow">Dutchbag</a></span><br />
658                         <img src="http://satwcomic.com/imgs/russia-laugh.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
659                         <small><i>18</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteM" title="M">M</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/Netherlands.png" width="16"
660                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="Netherlands" /></a><br />
661                         <a href="http://satwcomic.com/forums"><img src="http://satwcomic.com/imgs/moderator.png" width="81" height="13" alt="Moderator" title="Forum Moderator" /></a>
662                         <img src="http://satwcomic.com/badges/sml_yearbook.png" title="Mepsu Yearbook 2015" />  <img src="http://satwcomic.com/badges/sml_oneyear.png" title="Old One" />   <img src="http://satwcomic.com/badges/sml_hudson.png" title="Bug Hunter" />    <img src="http://satwcomic.com/badges/sml_quite.png" title="Mepsu Yearbook Winner" />
663
664                 </div>
665                 <div class="commentright">
666                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">21 hours ago</small> <small>#9400419</small> &nbsp;
667                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">2<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
668                         <br />
669                         &gt;fuck my like<br />
670                         <br />
671                         Humon pls
672
673
674                 </div>
675                 <hr class="magic" />
676                 <br />
677         </div>
678
679         <br />
680
681         <div class="commentall" id="comid_9400669" data-is-open="1"  style="display: block; margin-left: 0%;">
682                 <div class="commentleft">
683                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/kyrtuck" rel="nofollow">kyrtuck</a></span><br />
684                         <img src="http://satwcomic.com/imgs/special-finland.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
685                         <small><i>24</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteM" title="M">M</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/United-States.png" width="16"
686                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="United-States" /></a><br />
687
688
689
690                 </div>
691                 <div class="commentright">
692                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">4 hours ago</small> <small>#9400669</small> &nbsp;
693                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">1<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">1<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
694                         <br />
695                         No Netherlands, I don&#039;t wanna fuck your life, its not sexy enough.
696
697
698                 </div>
699                 <hr class="magic" />
700                 <br />
701         </div>
702
703         <br />
704
705         <div class="commentall" id="comid_9400600" data-is-open="1"  style="display: block; margin-left: 0%;">
706                 <div class="commentleft">
707                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/senia5" rel="nofollow">senia5</a></span><br />
708                         <img src="http://satwcomic.com/imgs/drunkden.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
709                         <small><i>18</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteF" title="F">F</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/Denmark.png" width="16"
710                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="Denmark" /></a><br />
711
712
713
714                 </div>
715                 <div class="commentright">
716                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">8 hours ago</small> <small>#9400600</small> &nbsp;
717                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">1<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
718                         <br />
719                         I love how you called him Hvalborg. Nice touch. ;)
720
721
722                 </div>
723                 <hr class="magic" />
724                 <br />
725         </div>
726
727         <br />
728
729         <div class="commentall" id="comid_9400569" data-is-open="1"  style="display: block; margin-left: 0%;">
730                 <div class="commentleft">
731                         <span style="font-weight: bold;"><a class="getName" href="http://satwcomic.com/member/Dorkymike" rel="nofollow">Dorkymike</a></span><br />
732                         <img src="http://satwcomic.com/imgs/hummfin.jpg" width="70" height="100" alt="" style="margin-top:4px;" /><br />
733                         <small><i>32</i></small> <a href="http://satwcomic.com/personal" rel="nofollow"><span class="spriteM" title="M">M</span></a>  <a href="http://satwcomic.com/personal" rel="nofollow"><img src="http://satwcomic.com/flags/United-States.png" width="16"
734                                                                                                                                                                                                                                                                                                                                                                                                           height="16" alt="" title="United-States" /></a><br />
735
736
737
738                 </div>
739                 <div class="commentright">
740                         <small></small><small class="commentdata" title="Posted at Scandinavia and the World">12 hours ago</small> <small>#9400569</small> &nbsp;
741                         &nbsp;  &nbsp;  &nbsp; <div class="label label-success">1<p class="vote_up glyphicon glyphicon-arrow-up" ></p></div><div class="label label-danger">0<p class="vote_down glyphicon glyphicon-arrow-down" ></p></div>  &nbsp; <br />
742                         <br />
743                         As long as they don&#039;t die on the beach and explode. That tends to be quite messy.
744
745
746                 </div>
747                 <hr class="magic" />
748                 <br />
749         </div>
750
751         <br />
752
753         <div class="memberpls">
754                 Add comment: Please <a href="http://satwcomic.com/login" rel="nofollow">Sign in</a> or <a href="http://satwcomic.com/join" rel="nofollow">create an accout</a> to comment.
755         </div>
756         <div class="stand_high" style="display: none;" id="reply_div">
757                 <small>, reply to comment: <span id="reply_comment_id"></span></small>
758                 <form method="post" action="http://satwcomic.com/the-whale-in-the-room" name="replycommentform" enctype="multipart/form-data" class="form-horizontal">
759                         <textarea rows="5" style="width: 95%;" id="reply_comtbox" name="comt" required class="form-control"></textarea><br />
760                         <button type="submit" name="addcomt" value="Reply to Comment" class="btn btn-primary">Reply</button>
761                         <input type="text" name="name" value="" class="hidden" />
762                         <input type="text" name="parent_links" value="" id="parent_links" class="hidden" />
763                 </form>
764         </div>
765         <br />
766         <center><h3><a href="http://satwcomic.com/allcomments/the-whale-in-the-room" rel="nofollow">View all 57 comments</a></h3></center>
767
768         <br />
769
770         <br />
771         <footer>
772                 <center>
773                         <img src="http://satwcomic.com/imgs/lightfoot.png" width="555" height="136" style="max-width: 100%; height: auto;" alt="" /><br />
774                         <br />
775                         Copyright &copy; 2009-2015 Scandinavia and the World<br />
776                         <br />
777
778                         <div class="row">
779                                 <div class="col-md-3">
780                                         <div class="well">
781                                                 <center>
782                                                         <a href="http://satwcomic.com/"><img src="http://mepsu.com/img_mepsu/scarf-satw.png" width="200" class="img-rounded" style="max-width: 100%; height: auto;" height="200" alt="" title="" /><br />
783                                                                 Scandinavia and the World</a>
784                                                 </center>
785                                         </div>
786                                 </div>
787                                 <div class="col-md-3">
788                                         <div class="well">
789                                                 <center>
790                                                         <a href="http://rom.ac/"><img src="http://mepsu.com/img_mepsu/scarf-ra2.png" class="img-rounded" style="max-width: 100%; height: auto;" width="200" height="200" alt="" title="" /><br />
791                                                                 Romantically Apocalyptic</a>
792                                                 </center>
793                                         </div>
794                                 </div>
795                                 <div class="col-md-3">
796                                         <div class="well">
797                                                 <center>
798                                                         <a href="http://stupidfox.net/"><img src="http://mepsu.com/img_mepsu/scarf-sf.png" width="200" class="img-rounded" style="max-width: 100%; height: auto;" height="200" alt="" title="" /><br />
799                                                                 StupidFox</a>
800                                                 </center>
801                                         </div>
802                                 </div>
803                                 <div class="col-md-3">
804                                         <div class="well">
805                                                 <center>
806                                                         <a href="http://humoncomics.com/"><img src="http://mepsu.com/img_mepsu/scarf-humon.png" width="200" class="img-rounded" style="max-width: 100%; height: auto;" height="200" alt="" title="" /><br />
807                                                                 Humon Comics</a>
808                                                 </center>
809                                         </div>
810                                 </div>
811                         </div>
812
813
814                         <!--<a href="http://satwcomic.com/guest-strips" title="guest strips from fellow artists">Be a guest artist</a> | -->
815                         <a href="mailto:contact@satwcomic.com" title="contact us">contact@satwcomic.com</a> |
816                         <a href="http://satwcomic.com/advertise">Advertise</a> |
817                         <a href="http://dayvi.com/" title="Coded by Dayvi">Coded by Dayvi</a> |
818                         <a href="http://satwcomic.com/webcomics" rel="nofollow">Other Webcomics</a> |
819                         <a href="http://satwcomic.com/privacy-policy" rel="nofollow">Privacy Policy</a>
820
821                         <br />
822                         <br />
823
824                 </center>
825         </footer>
826
827
828 </div>
829 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
830 <script src="http://satwcomic.com/js/bootstrap.min.js"></script><script src="http://satwcomic.com/i_comments.js"></script>
831
832
833
834 </body>
835 </html>