|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<!-- machid: 108 --> <head> <title>YouTube - Ramones - Blitzkrieg Bop</title>
<link rel="stylesheet" href="/css/styles_yts1177571333.css" type="text/css"> <link rel="stylesheet" href="/css/base_yts1178140022.css" type="text/css"> <link rel="stylesheet" href="/css/watch_yts1178840248.css" type="text/css"> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> <meta name="title" content="Ramones - Blitzkrieg Bop"> <meta name="description" content="Ramones - Blitzkrieg Bop"> <meta name="keywords" content="ramones, blitzkrieg">
<link rel="alternate" title="YouTube - [RSS]" href="/rssls">
<script type="text/javascript" src="/js/ui_yts1169707248.js"></script> <script type="text/javascript" src="/js/AJAX_yts1175144889.js"></script> <script type="text/javascript" src="/js/watch_queue_yts1175725833.js"></script> <script type="text/javascript" src="/js/ytutil_yts1177563498.js"></script> <script language="javascript" type="text/javascript"> onLoadFunctionList = new Array(); function performOnLoadFunctions() { for (var i in onLoadFunctionList) { onLoadFunctionList[i](); } } </script> <script language="javascript" type="text/javascript"> function _hbLink (a,b) { return false; } </script>
<script type="text/javascript" src="/swfobject.js"></script> <script type="text/javascript" src="/js/components_yts1175144889.js"></script> <script type="text/javascript" src="/js/AJAX_yts1175144889.js"></script> <script type="text/javascript" src="/js/ui_yts1169707248.js"></script> <script type="text/javascript" src="/js/comments_yts1175144889.js"></script>
<script language="javascript" type="text/javascript"> function toggleFullStats(statsContent) { var ajax_action = ''; if (statsContent === undefined) { statsContent = 'honors'; ajax_action = 'action_get_honors'; document.getElementById('referDiv').style.display = 'block'; } else if (statsContent == 'audio') { ajax_action = 'action_get_audio_info'; document.getElementById('referDiv').style.display = 'none'; } var fsd = document.getElementById('fullStats').style.display; if (fsd == 'none' || fsd == '') { showAjaxDivNotLoggedIn('additionalStatsDiv', '/watch_ajax?v=QLWGSRQrbQs&' + ajax_action + '=1&l=DE', false); if (statsContent == 'audio') { document.getElementById('showhide').innerHTML = 'Hide'; } toggleDisplay('fullStats'); } else { if (((statsContent == 'honors' && document.getElementById('audioStatHead')) || (statsContent == 'audio' && document.getElementById('honorStatHead')))) { showAjaxDivNotLoggedIn('additionalStatsDiv', '/watch_ajax?v=QLWGSRQrbQs&' + ajax_action + '=1&l=DE', false); if (statsContent == 'honors') { document.getElementById('showhide').innerHTML = 'Show'; } else if (statsContent == 'audio') { document.getElementById('showhide').innerHTML = 'Hide'; } } else { toggleDisplay('fullStats'); if (statsContent == 'audio') { document.getElementById('showhide').innerHTML = 'Show'; } } } } function closeFullStats() { toggleDisplay('fullStats'); if (document.getElementById('showhide')) { document.getElementById('showhide').innerHTML = 'Show'; }
} function CheckLogin() { return false; } function showRelatedVideosContent() { getAndShowNavContent('exRelated', '/watch_ajax?video_id=QLWGSRQrbQs&action_get_related_videos_component&search=ramones%20blitzkrieg'); } function showRelatedPlaylistContent() { getAndShowNavContent('exPlaylist', '/watch_ajax?feature=PlayList&search=ramones%20blitzkrieg&video_id=QLWGSRQrbQs&action_get_related_playlist_component&p=&index=0'); } function showRelatedUserContent() { getAndShowNavContent('exUser', '/watch_ajax?video_id=QLWGSRQrbQs&action_get_user_videos_component&user_id=5ANKM4VOdd0&video_count=26'); } function showHonorsContent() { getAndShowNavContent('honors', '/watch_ajax?v=QLWGSRQrbQs&action_get_honors=1&l=DE'); } function showAllQueuedVideos() { setInnerHTML('show_all_queued_videos_div', 'Loading...'); getAndShowNavContent('watchlist_container', '/watch_queue_ajax?action_get_all_queue_videos_component&v=QLWGSRQrbQs', postShowAllQueuedVideos); } function postShowAllQueuedVideos() { setInnerHTML('show_all_queued_videos_div', 'Showing All Videos'); jumpToNowPlaying(); } // This can be split out... var contentTab=new Array(); function getAndShowNavContent(nameprefix, url, postShowNavContent) { selectNavLink(nameprefix + "Link"); if(contentTab[nameprefix]) { return; } self.nameprefix = nameprefix; self.showRelatedVideosResponse = showRelatedVideosResponse; self.postShowNavContent = postShowNavContent getUrlXMLResponse(url, showRelatedVideosResponse); } function showRelatedVideosResponse(req) { document.getElementById(self.nameprefix + "Div").innerHTML=getNodeValue(req.responseXML, "html_content"); setContentLoaded(self.nameprefix); if(self.postShowNavContent) { self.postShowNavContent(); } }
function setContentLoaded(nameprefix) { selectNavLink(nameprefix + "Link"); contentTab[nameprefix] = 1; } function showAjaxDivNotLoggedIn(divName, url) { self.divName = divName self.showAjaxDivResponse = showAjaxDivResponse getUrlXMLResponse(url, self.showAjaxDivResponse); } function showAjaxPostDivNotLoggedIn(divName, url, data) { self.divName = divName self.showAjaxDivResponse = showAjaxDivResponse postUrlXMLResponse(url, data, self.showAjaxDivResponse); } function showAjaxDiv(divName, url) { if(CheckLogin()) { showAjaxDivNotLoggedIn(divName,url) } else { alert("Please login to perform this operation."); } } function showAjaxPostDiv(divName, url, data) { if(CheckLogin()) { showAjaxPostDivNotLoggedIn(divName,url,data) } else { alert("Please login to perform this operation."); } } function showAjaxDivResponse(req) { document.getElementById(self.divName).innerHTML=getNodeValue(req.responseXML, "html_content"); openDiv(self.divName); } function postAjaxForm(divName, formName) { self.postAjaxFormCompleted = postAjaxFormCompleted; self.divName = divName; postFormXMLResponse(formName, self.postAjaxFormCompleted); } function postAjaxFormCompleted(req) { if(self.divName != null) hideAjaxDiv(self.divName); } function hideAjaxDiv(divName) { closeDiv(divName); } function xmlrpccallback(req) { alert('xmlrpccallback: ' + req.responseText); }
function debugCompleted(req) { url = getNodeValue(req.responseXML, 'url'); xmldata = getNodeValue(req.responseXML, 'xmldata'); proxy = getNodeValue(req.responseXML, 'proxy'); //alert('url: '+ url + '\nxmldata: ' + xmldata); postUrlXMLResponse(url, xmldata, xmlrpccallback); //alert ("url: " + url + "\nxmldata: " + xmldata + "\nproxy: " + proxy); }
function getXMLRPCData(divName, formName) { self.callback = debugCompleted; postFormXMLResponse(formName, self.callback); } // Player stuff function openFull() { var fs = window.open( "/watch_fullscreen?video_id=QLWGSRQrbQs&l=124&t=OEgsToPDskIRQkrmIAsHgqEPSCXbcnsh&soff=1&sk=U_wKjpZtA_f6UJ-8WR_cGwC&fs=1&title=" + "Ramones - Blitzkrieg Bop" , "FullScreenVideo", "toolbar=no,width=" + screen.availWidth + ",height=" + screen.availHeight + ",status=no,resizable=yes,fullscreen=yes,scrollbars=no"); fs.focus(); } function gotoNext() { } function autoNext() { var p = document.getElementById("movie_player"); if(p.GetVariable("movie.is_playing") == "false" && p.GetVariable("movie.restart") == "true") { gotoNext(); } else { p.SetVariable("playnext", "1"); } var pa = document.getElementById("playall"); var pga = document.getElementById("playingall"); hideDiv(pa); showDiv(pga); }
function postToTrackerForWatch(time_played) { }
function showCommentReplyForm(form_id, reply_parent_id, is_main_comment_form) { if(!CheckLogin()) { alert("Please login to post a comment."); return false; } printCommentReplyForm(form_id, reply_parent_id, is_main_comment_form); } function printCommentReplyForm(form_id, reply_parent_id, is_main_comment_form) {
var div_id = "div_" + form_id; var reply_id = "reply_" + form_id; var reply_comment_form = "comment_form" + form_id; if (is_main_comment_form) discard_visible="style='display: none'"; else discard_visible=""; var innerHTMLContent = '\ <form name="' + reply_comment_form + '" id="' + reply_comment_form + '" method="post" action="/comment_servlet" >\ <input type="hidden" name="video_id" value="QLWGSRQrbQs">\ <input type="hidden" name="add_comment" value="">\ <input type="hidden" name="form_id" value="' + reply_comment_form + '">\ <input type="hidden" name="reply_parent_id" value="' + reply_parent_id + '">\ <input type="hidden" name="comment_type" value="V">\ <textarea tabindex="2" name="comment" cols="55" rows="3" class="widthMax"></textarea>\ <br>\ <input align="right" type="button" name="add_comment_button" \ value="Post Comment" \ onclick="postThreadedComment(\'' + reply_comment_form + '\');">\ <input align="right" type="button" name="discard_comment_button"\ value="Discard" ' + discard_visible + '\ onclick="hideCommentReplyForm(\'' + form_id + '\',false);">\ </form><br><br>'; if(!is_main_comment_form) { toggleVisibility(reply_id, false); } setInnerHTML(div_id, innerHTMLContent); toggleVisibility(div_id, true); }
function postThreadedComment(comment_form_id) { if (CheckLogin() == false) return false;
var form = document.forms[comment_form_id];
if (ThreadedCommentHandler(form)) { var add_button = form.add_comment_button; add_button.value = "Adding comment..."; add_button.disabled = true;
} } function ThreadedCommentHandler(comment_form) { var comment = comment_form.comment; var comment_button = comment_form.comment_button;
if (comment.value.length == 0 || comment.value == null) { alert("You must enter a comment!"); comment.focus(); return false; }
if (comment.value.length > 500) { alert("Your comment must be shorter than 500 characters!"); comment.focus(); return false; }
postFormByForm(comment_form, true, commentResponse); return true; } function commentResponse(xmlHttpRequest) { response_str = xmlHttpRequest.responseText; response_code = response_str.substr(0, response_str.indexOf(" ")); form_id = response_str.substr(response_str.indexOf(" ")+1); var form = document.forms[form_id]; var dstDiv = form.add_comment_button; var discard_button = form.discard_comment_button;
if (response_code == "OK") { dstDiv.value = "Comment Posted!"; dstDiv.disabled = true; discard_button.disabled = true; discard_button.style.display = "none"; alert("Thank You. Your comment has been posted!"); } else if (response_code == "PENDING") { dstDiv.value = "Comment Pending Approval!"; dstDiv.disabled = true; alert("Your comment has been posted! It will be visible once it is approved."); discard_button.disabled = true; discard_button.style.display = "none";
} else if (response_code == "LOGIN") { alert("An error occurred while posting the comment. Please relogin and try again."); dstDiv.disabled = false; } else if (response_code == "EMAIL") { if(confirm("You must confirm your email address before you can submit comments. Click OK to confirm your email address.")) { window.location="/email_confirm" } dstDiv.disabled = false; } else { if(response_code == "BLOCKED") { alert("You have been blocked from commenting on this user's videos."); dstDiv.disabled = true; } else if(response_code == "TOOSOON") { alert("You have recently posted several comments. Please wait for some time before posting another."); dstDiv.disabled = false; } else if(response_code == "TOOLONG") { alert("The comment you have entered is too long. Please write a shorter comment and try again."); dstDiv.disabled = false; } else if(response_code == "TOOSHORT") { alert("The comment you have entered is too short. Please write a longer comment and try again."); dstDiv.disabled = false; } else if(response_code == "FAILED") { alert("Your comment was not sent, either because it includes a URL or email address."); dstDiv.disabled = false; } else { alert("An error occurred while posting the comment."); dstDiv.disabled = false; } dstDiv.value = "Post Comment"; } }
function load_all_comments(video_id, is_watch2) { var remove_btn = document.getElementById('all_comments_button'); if(remove_btn) { remove_btn.value = "Loading Comments..."; remove_btn.disabled = true } if(is_watch2) var watch2_str = "&watch2" else var watch2_str = "" getUrlXMLResponse("/comment_servlet?get_comments&v=" + video_id + watch2_str, handleStateChange); } function hideSpam(cid) { if (document.getElementById('reply_comment_form_id_'+cid)) { document.getElementById('reply_comment_form_id_'+cid).style.display = 'none'; } if (document.getElementById('comment_body_'+cid)) { document.getElementById('comment_body_'+cid).style.display = 'none'; } if (document.getElementById('comment_spam_bug_'+cid)) { document.getElementById('comment_spam_bug_'+cid).style.display = 'inline'; } }
function redirectToUrl(req) { window.location.href=self.new_redirect_url; return true; } function unblockUserLink(friend_id, url) { if (!confirm("Are you sure you want to unblock this user?")) return true; self.new_redirect_url = url; getUrlXMLResponse("/link_servlet?unblock_user=1&friend_id=" + friend_id, redirectToUrl); return true; } function blockUserLink(friend_id, url) { if (!confirm("Are you sure you want to block this user?")) return true; self.new_redirect_url = url; getUrlXMLResponse("/link_servlet?block_user=1&friend_id=" + friend_id, redirectToUrl); return true; } function blockUserLinkByUsername(friend_username) { if (!confirm("Are you sure you want to block this user?")) return false; getUrlXMLResponse("/link_servlet?block_user=1&friend_username=" + friend_username); return false; }
onLoadFunctionList.push(function() { setContentLoaded("exRelated"); } ); function selectNavLink (linkName) { if (linkName == "exRelatedLink") { closeDiv("exUserDiv"); closeDiv("exPlaylistDiv"); openDiv("exRelatedDiv"); unSelectLink("exPlaylistLink"); unSelectLink("exUserLink"); selectLink("exRelatedLink"); blurElement("exRelatedLink"); replaceExploreTab("exploreMoreTabs", "/img/btn_exploretab_related_300x34.gif"); } if (linkName == "exPlaylistLink") { closeDiv("exRelatedDiv"); closeDiv("exUserDiv"); openDiv("exPlaylistDiv"); unSelectLink("exUserLink"); unSelectLink("exRelatedLink"); selectLink("exPlaylistLink"); blurElement("exPlaylistLink"); replaceExploreTab("exploreMoreTabs", "/img/btn_exploretab_playlist_300x34.gif"); } if (linkName == "exUserLink") { closeDiv("exRelatedDiv"); closeDiv("exPlaylistDiv"); openDiv("exUserDiv"); unSelectLink("exPlaylistLink"); unSelectLink("exRelatedLink"); selectLink("exUserLink"); blurElement("exUserLink"); replaceExploreTab("exploreMoreTabs", "/img/btn_exploretab_morefromuser_300x34.gif"); } } function replaceExploreTab(elid, imgSrc) { var theElement = document.getElementById(elid); if (theElement) { theElement.src = imgSrc; } }
</script> <script language="javascript" type="text/javascript">
first_time = 1; function changeBanner(img_url, ref_url, is_flash){ var e = document.getElementById("gad_leaderboardAd");
if (first_time) { e.style.height = "90px"; first_time = 0; }
var url = ""; if (is_flash == "true") { url += "<object width='728' height='90'>"; url += "<" + "param value='clickTAG=" + encodeURIComponent(ref_url) + "' /" + ">"; url += "<" + "embed src='" + img_url + "'"; url += " type='application/x-shockwave-flash' wmode='transparent'"; url += " flashvars='clickTAG=" + encodeURIComponent(ref_url) + "'"; url += " width='728' height='90' /" + ">"; url += "</object>"; } else { url = "<" + "a href='" + ref_url + "' target='_blank'>"; url += "<img src='" + img_url + "'>"; url += "</a>"; }
e.innerHTML = url; } </script>
</head>
<body onLoad="performOnLoadFunctions();">
<div id="baseDiv"> <div id="logoTagDiv"> <a href="/" name="&lid=Logo&lpos=GlobalNav"><img src="/img/pic_youtubelogo_123x63.gif" alt="Home" width="123" height="63" border="0" onmouseover="showDiv('logoHomeTip');" onmouseout="hideDiv('logoHomeTip');" /></a> </div> <div id="logoHomeTip" style="display: none;">Home</div>
<div id="utilDiv"> <script type="text/javascript">var quicklist_count=0;</script> <b><a href="/signup" onclick="_hbLink('SignUp','UtilityLinks');">Sign Up</a></b> <span class="utilDelim">|</span> <a href="/my_account" >My Account</a> <span class="utilDelim">|</span> <a href="/recently_watched" onclick="_hbLink('ViewingHistory','UtilityLinks');">History</a> <span class="utilDelim">|</span> <a href="http://www.google.com/support/youtube">Help</a>
<span class="utilDelim">|</span> <a href="/login?next=/watch%3Fv%3DQLWGSRQrbQs" onclick="_hbLink('LogIn','UtilityLinks');">Log In</a> <form name="logoutForm" method="post" target="_top" action="/index"> <input type="hidden" name="action_logout" value="1"> </form> </div>
<div id="searchDiv"> <form name="searchForm" id="searchForm" method="get" action="/results"> <input tabindex="10000" type="text" name="search_query" maxlength="128" class="searchField" value=""> <input type="submit" name="search" value="Search"> </form>
</div> <div id="gNavDiv"> <div id="upload"><a href="/my_videos_upload"><img src="/img/pic_upload_130x28.gif" width="130" height="28" alt="Upload" border="0" /></a></div>
<div class="tab"> <a href="/community"><img src="/img/tab_community_118x28.gif" width="118" height="28" border="0" alt="Community" /></a></div> <div class="tab"> <a href="/members"><img src="/img/tab_channels_118x28.gif" width="118" height="28" border="0" alt="Channels" /></a></div> <div class="tab"> <a href="/categories"><img src="/img/tab_categories_118x28.gif" width="118" height="28" border="0" alt="Categories" /></a></div> <div class="tab"> <a href="/browse?s=mp"><img src="/img/tab_videos_select_118x28.gif" width="118" height="28" border="0" alt="Videos" /></a></div> </div> <!-- end gNavDiv --> <div id="gNavBottom"> </div>
<div id="leaderboardAd">
<!-- begin ad tag --> <script type="text/javascript"> ord=Math.random()*10000000000000000 + 1; document.write('<script language="JavaScript" src="http://ad.doubleclick.net/adj/you.watch/music;sz=728x90;kch=2179803025;kbg=FFFFFF;kr=F;kpu=breslauer;kvideoid=QLWGSRQrbQs;ord=' + ord + '?" type="text/javascript"><\/script>'); </script> <noscript><a href="http://ad.doubleclick.net/jump/you.watch/music;sz=728x90;ord=123456789?" target="_blank"><img src="http://ad.doubleclick.net/ad/you.watch/music;sz=728x90;ord=123456789?" width="728" height="90" border="0" alt=""></a> </noscript> <!-- End ad tag -->
</div>
<!-- begin main presentation code -->
<h1 id="video_title">Ramones - Blitzkrieg Bop</h1>
<table cellpadding="0" cellspacing="0" align="center"><tr valign="top"> <td> <div id="interactDiv">
<div id="playerDiv"> <div style="padding: 20px; font-size:14px; font-weight: bold;"> Hello, you either have JavaScript turned off or an old version of Macromedia's Flash Player. <a href="http://www.macromedia.com/go/getflashplayer/" onclick="_hbLink('Get+Flash','Watch');">Get the latest Flash player</a>. </div> </div> <script type="text/javascript"> // <![CDATA[ var fo = new SWFObject("/player2.swf?video_id=QLWGSRQrbQs&l=124&t=OEgsToPDskIRQkrmIAsHgqEPSCXbcnsh&soff=1&sk=U_wKjpZtA_f6UJ-8WR_cGwC", "movie_player", "450", "370", 7, "#FFFFFF"); fo.addParam("allowFullscreen", "true"); fo.addVariable("sourceid", "ys"); fo.addVariable("q", "ramones"); fo.write("playerDiv"); // ]]> </script>
<div id="watchqueueStartNew" class="quicklist_container hid"> <div><img src="/img/pic_curves_top_450x4.gif" border="1" /></div> <div id="nextvideoRow" class="nextVideoRowDiv"> <table width="440" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="77" align="left" valign="top"> <div class="headerTitleLite"> QuickList</div> </td> <td width="30" valign="top" align="right"> <a href="#" onclick="play_all_start_new();_hbLink('QuickList+PlayAll','Watch');return false;" rel="nofollow" ><img id="play_all_buttton" hspace="4" src="/img/pixel.gif" border="0" valign="top" height="25" width="33" alt="Play All Videos" /></a> </td> <td width="53" valign="top"> <div id="playall" class="smallText"> <b><a href="#" onclick="autoNext();return false;" rel="nofollow" >Play All</a></b></div> <div id="playingall" class="grayText smallText hid">Playing All</div> <span class="smallText grayText"> Videos: </span> <span id="play_all_numb" class="smallText grayText"> <script language="javascript" type="text/javascript">document.write(quicklist_count);</script> </span> </td> <td width="30" valign="top" align="right"> <a id="next_video_url_1" href="#"><img id="next_video_image_url" src="/img/pixel.gif" height="25" border="0" style="padding-right:2px;" align="middle"></a> </td> <td width="200" valign="top"> <div class="nextVideoDisplay"> <span class="grayText smallText"><b><a id="next_video_url_2" href="#">Play Next</a></b> <br /><span id="next_video_title"> </span> </div> </td> <td width="40" valign="top" align="right"> <div id="show_button_container" class="hideShowButton"> <a href="#" onClick="clickedHideShowButton();_hbLink('QuickList+ShowHide','Watch');return false;" rel="nofollow" ><img id="watch_queue_show_hide" src="/img/btn_watchqueue_hide_33x25.gif" width="33" height="25" border="0" alt="Show or Hide QuickList Videos"></a> </div> </td> </tr> </table> </div> <div id="watchlist_container" class="watchlist_videos"> <table id="watchlist_table" width="426" align="center" border="0" cellpadding="0" cellspacing="0"> <tr><td width="8"></td><td width="55"></td><td width="313"></td><td width="50"></td></tr> </table> </div>
<div id="save_row" class="saveRowDiv" style="height:20px;display:block;"> <div class="saveRowSetting"> <span class="smallText"> <form id="set_pop" name="set_pop"> <input id="checkbox_pop_no_pop" type="checkbox" onClick="if(document.set_pop.quicklist_pop_nopop.checked==true) {set_pop_status(1);} else{set_pop_status(0);};" name="quicklist_pop_nopop">Remove videos as I watch them </form> </span> </div> <div class="quicklistActions"> <span class="smallText"><b><a href="/watch_queue?all" title="Go to QuickList page" onclick="_hbLink('QuickList+ManageLink','Watch');" rel="nofollow" >Manage</a> | <a href="/edit_playlist_info?watch_queue=1" title="Save all videos into a permanent playlist" onclick="_hbLink('QuickList+SaveLink','Watch');" rel="nofollow">Save</a> | <a href="#" onClick="javascript:return clear_watch_queue_watch_page();_hbLink('QuickList+ClearLink','Watch');return false;" title="Remove all videos from QuickList" rel="nofollow">Clear</a></b></span> </div> </div> <!-- end save_row --> <div><img src="/img/pic_curves_bottom_450x4.gif" border="1"></div> </div>
<div id="actionsAndStatsDiv" class="contentBox"> <div id="ratingDivWrapper"> <div id="ratingDiv">
<div id="ratingMessage"><a href="/signup?next=/watch%3Fv%3DQLWGSRQrbQs">Login</a> to rate</div>
<img class="rating" src="/img/icn_star_full_19x20.gif" align="top"><img class="rating" src="/img/icn_star_full_19x20.gif" align="top"><img class="rating" src="/img/icn_star_full_19x20.gif" align="top"><img class="rating" src="/img/icn_star_full_19x20.gif" align="top"><img class="rating" src="/img/icn_star_empty_19x20.gif" align="top"> <div class="rating ratingCount">974 ratings</div>
<div class="spacer"></div> </div> <!-- end ratingDiv --> </div> <!-- end ratingDivWrapper --> <div class="actionsDiv"> <div class="actionRow"> <a href="#" class="noul" onclick="showAjaxDiv('addFavsDiv', '/watch_ajax?video_id=QLWGSRQrbQs&action_get_playlists_component=1', true); _hbLink('Save+To+Favorites','Watch'); return false;" onmouseover="" rel="nofollow"><img src="/img/icn_fav_reg_19x17.gif" border="0" class="alignMid" alt="Save to Favorites"> <span class="eLink">Save to Favorites</span></a> </div> <div class="actionRow"> <a href="#" class="noul" onclick="showAjaxDiv('addGroupsDiv', '/watch_ajax?video_id=QLWGSRQrbQs&action_get_groups_component=1', true); _hbLink('Add+To+Groups','Watch'); return false;" rel="nofollow"><img src="/img/icn_groups_reg_19x17.gif" border="0" class="alignMid" alt="Add to Groups"> <span class="eLink">Add to Groups</span></a> </div> </div> <div class="actionsDiv sm"> <div class="actionRow"> <a href="#" class="noul" onClick="window.open('/share?v=QLWGSRQrbQs','Share','width=580,height=480,resizable=yes,scrollbars=yes,status=0'); _hbLink('Share+Video','Watch'); return false;" rel="nofollow"><img src="/img/icn_email_reg_19x17.gif" border="0" class="alignMid" alt="Share This Video"> <span class="eLink">Share Video</span></a> </div> <div class="actionRow"> <a href="#" class="noul" onclick="showAjaxDivNotLoggedIn('blogVidDiv', '/watch_ajax?video_id=QLWGSRQrbQs&action_get_user_blogs_component=1', true); _hbLink('Blog+Video','Watch'); return false;" rel="nofollow"><img src="/img/icn_web_reg_19x17.gif" border="0" class="alignMid"> <span class="eLink">Post Video</span></a> </div> </div> <div class="actionsDiv sm"> <div class="actionRow"> <a href="#" class="noul" onclick="showAjaxDiv('inappropriateVidDiv', '/watch_ajax?video_id=QLWGSRQrbQs&action_get_flag_video_component=1', true); _hbLink('Flag+Inappropriate','Watch'); return false;" rel="nofollow"><img src="/img/icn_flag_reg_19x17.gif" border="0" class="alignMid" alt="Flag as Inappropriate"> <span class="eLink">Flag as Inappropriate</span></a> </div> </div> <div class="spacer"></div> <div class="statsDiv"> Views: <span class="statVal">308,279</span> <div class="statDivider">|</div> Comments: <span class="statVal">447</span> <div class="statDivider">|</div> Favorited: <span class="statVal">1878</span> times </div> <div class="statsDiv"><span class="smStat">Honors: <a class="eLink" href="#" onclick="toggleFullStats(); return false;" rel="nofollow">0</a></span><span class="smStat">Links: <a class="eLink" href="#" onclick="toggleFullStats(); return false;" rel="nofollow">5</a></span> </div> <div id="fullStats"> <div id="referDiv" class="moreStats"> <h4>Sites Linking to This Video:</h4> <div class="statItem"><span class="label">275 clicks from</span> <a rel="nofollow" href="http://beboframe.com/FlashFrame.jsp?Size=S&FlashBoxId=1139160263" target="_top">http://beboframe.com/FlashFrame.jsp?Size=S&Flash...</a></div> <div class="statItem"><span class="label">245 clicks from</span> <a rel="nofollow" href="http://023.gamushara.net/bbs/ytmusic/html/QLWGSRQrbQs.html" target="_top">http://023.gamushara.net/bbs/ytmusic/html/QLWGSRQrbQ...</a></div> <div class="statItem"><span class="label">114 clicks from</span> <a rel="nofollow" href="http://www.musicmesh.net/c/watch.php?s=The+Ramones+Blitzkrieg+Bop&lang=en&artist=The+Ramones&title=Bli" target="_top">http://www.musicmesh.net/c/watch.php?s=The+Ramones+B...</a></div> <div class="statItem"><span class="label">75 clicks from</span> <a rel="nofollow" href="http://www.myspace.com/" target="_top">http://www.myspace.com/</a></div> <div class="statItem"><span class="label">61 clicks from</span> <a rel="nofollow" href="http://www.cynical-c.com/" target="_top">http://www.cynical-c.com/</a></div> </div> <div id="additionalStatsDiv" class="moreStats"><h3>Loading Info...</h3></div> <div id="fullStatsClose"><a href="#" class="eLink" onclick="closeFullStats(); return false;" rel="nofollow">close</a></div> <div class="spacer"></div> </div>
<div id="addFavsDiv" class="popupDiv"></div> <div id="addGroupsDiv" class="popupDiv"></div> <div id="sendToMobileDiv" class="popupDiv"></div> <div id="blogVidDiv" class="popupDiv"></div> <div id="inappropriateVidDiv" class="popupDiv"></div> </div> <!-- end actionsAndStatsDiv -->
<div id="commentsDiv"> <table cellpadding="0" cellspacing="0" width="100%"><tr> <td><h2 style="margin: 0px;">Comments & Responses</h2></td> <td align="right"> <div style="padding-bottom: 2px;"> <b><a href="/video_response_upload?v=QLWGSRQrbQs" onclick="_hbLink('Post+Video+Response','Watch');" rel="nofollow">Post a video response</a></b> </div> <div id="reply_main_comment2"> <b><a href="#" class="eLink" onclick="showCommentReplyForm('main_comment2', '', false); return false;" onclick="_hbLink('Post+Text+Comment','Watch');" id="post_text_comment_link" rel="nofollow">Post a text comment</a></b> </div>
</td> </tr></table> <div id="recent_comments"> <div id="div_main_comment2"></div>
<div class="commentPagination marT5"> Most Recent  ...  <span class="commentPnum">1</span> <span class="commentPnum"><a href="#" onclick="showAjaxDivNotLoggedIn('recent_comments', '/watch_ajax?v=QLWGSRQrbQs&action_get_comments=1&p=2', true);document.getElementById('post_text_comment_link').focus(); return false;" rel="nofollow">2</a></span> <span class="commentPnum"><a href="#" onclick="showAjaxDivNotLoggedIn('recent_comments', '/watch_ajax?v=QLWGSRQrbQs&action_get_comments=1&p=3', true);document.getElementById('post_text_comment_link').focus(); return false;" rel="nofollow">3</a></span> <span class="commentPnum"><a href="#" onclick="showAjaxDivNotLoggedIn('recent_comments', '/watch_ajax?v=QLWGSRQrbQs&action_get_comments=1&p=4', true);document.getElementById('post_text_comment_link').focus(); return false;" rel="nofollow">4</a></span> <span class="commentPnum"><a href="#" onclick="showAjaxDivNotLoggedIn('recent_comments', '/watch_ajax?v=QLWGSRQrbQs&action_get_comments=1&p=5', true);document.getElementById('post_text_comment_link').focus(); return false;" rel="nofollow">5</a></span> <span class="commentPnum"><a href="#" onclick="showAjaxDivNotLoggedIn('recent_comments', '/watch_ajax?v=QLWGSRQrbQs&action_get_comments=1&p=6', true);document.getElementById('post_text_comment_link').focus(); return false;" rel="nofollow">6</a></span> <span class="commentPnum"><a href="#" onclick="showAjaxDivNotLoggedIn('recent_comments', '/watch_ajax?v=QLWGSRQrbQs&action_get_comments=1&p=7', true);document.getElementById('post_text_comment_link').focus(); return false;" rel="nofollow">7</a></span> <span class="commentPnum"><a href="#" onclick="showAjaxDivNotLoggedIn('recent_comments', '/watch_ajax?v=QLWGSRQrbQs&action_get_comments=1&p=8', true);document.getElementById('post_text_comment_link').focus(); return false;" rel="nofollow">8</a></span>  ...  <a href="#" onclick="showAjaxDivNotLoggedIn('recent_comments', '/watch_ajax?v=QLWGSRQrbQs&action_get_comments=1&p=45', true);document.getElementById('post_text_comment_link').focus(); return false;" rel="nofollow">Oldest</a></b> </div>
<div id="div_n-upBaL29b8"> <!-- comment_div_id --> <a name="n-upBaL29b8"/></a> <div class="commentEntry" id="comment_n-upBaL29b8"> <div class="commentHead"> <b><a href="/user/philshred" rel="nofollow">philshred</a></b> <span class="smallText"> (8 hours ago) </span> <span id="comment_spam_bug_n-upBaL29b8" class="commentSpamBug" style="display: none;">marked as spam</span> </div> <div id="comment_body_n-upBaL29b8" class="commentBody"> errrr... you have made an error. i said DESERVE. i know they have one, stupid. </div> <div class="commentAction smallText">
<div class="commentAction smallText" id="container_comment_form_id_n-upBaL29b8" style="display: none"> </div> <!-- container id --> <div class="commentAction smallText" id="reply_comment_form_id_n-upBaL29b8"> (<a href="#" onclick="showCommentReplyForm('comment_form_id_n-upBaL29b8', 'n-upBaL29b8', false); return false;" class="eLink" rel="nofollow">Reply</a>)  
</div> <div id="div_comment_form_id_n-upBaL29b8"> </div>
</div> </div> </div> <!-- comment_div_id -->
<div id="div_9WcaDMwpcMw"> <!-- comment_div_id --> <a name="9WcaDMwpcMw"/></a> <div class="commentEntry" id="comment_9WcaDMwpcMw"> <div class="commentHead"> <b><a href="/user/philshred" rel="nofollow">philshred</a></b> <span class="smallText"> (8 hours ago) </span> <span id="comment_spam_bug_9WcaDMwpcMw" class="commentSpamBug" style="display: none;">marked as spam</span> </div> <div id="comment_body_9WcaDMwpcMw" class="commentBody"> ur funny </div> <div class="commentAction smallText">
<div class="commentAction smallText" id="container_comment_form_id_9WcaDMwpcMw" style="display: none"> </div> <!-- container id --> <div class="commentAction smallText" id="reply_comment_form_id_9WcaDMwpcMw"> (<a href="#" onclick="showCommentReplyForm('comment_form_id_9WcaDMwpcMw', '9WcaDMwpcMw', false); return false;" class="eLink" rel="nofollow">Reply</a>)  
</div> <div id="div_comment_form_id_9WcaDMwpcMw"> </div>
</div> </div> </div> <!-- comment_div_id -->
<div id="div_rJwqx8m5ohs"> <!-- comment_div_id --> <a name="rJwqx8m5ohs"/></a> <div class="commentEntry" id="comment_rJwqx8m5ohs"> <div class="commentHead"> <b><a href="/user/woolsock123" rel="nofollow">woolsock123</a></b> <span class="smallText"> (17 hours ago) </span> <span id="comment_spam_bug_rJwqx8m5ohs" class="commentSpamBug" style="display: none;">marked as spam</span> </div> <div id="comment_body_rJwqx8m5ohs" class="commentBody"> copy and paste this to 10 videos or your mum will die within the next 4 hours </div> <div class="commentAction smallText">
<div class="commentAction smallText" id="container_comment_form_id_rJwqx8m5ohs" style="display: none"> </div> <!-- container id --> <div class="commentAction smallText" id="reply_comment_form_id_rJwqx8m5ohs"> (<a href="#" onclick="showCommentReplyForm('comment_form_id_rJwqx8m5ohs', 'rJwqx8m5ohs', false); return false;" class="eLink" rel="nofollow">Reply</a>)  
</div> <div id="div_comment_form_id_rJwqx8m5ohs"> </div>
</div> </div> </div> <!-- comment_div_id -->
<div id="div_mBVhC3ngMw8"> <!-- comment_div_id --> <a name="mBVhC3ngMw8"/></a> <div class="commentEntry" id="comment_mBVhC3ngMw8"> <div class="commentHead"> <b><a href="/user/ELDEL2402" rel="nofollow">ELDEL2402</a></b> <span class="smallText"> (18 hours ago) </span> <span id="comment_spam_bug_mBVhC3ngMw8" class="commentSpamBug" style="display: none;">marked as spam</span> </div> <div id="comment_body_mBVhC3ngMw8" class="commentBody"> people say shit about the ramones like they suck but we dont care niether did they they did their own thing and didnt give a fuck what anyone thought of em. which is why i dont give a fuck about you cunts that come on here and say the ramones suck. they didnt care and neither do i </div> <div class="commentAction smallText">
<div class="commentAction smallText" id="container_comment_form_id_mBVhC3ngMw8" style="display: none"> </div> <!-- container id --> <div class="commentAction smallText" id="reply_comment_form_id_mBVhC3ngMw8"> (<a href="#" onclick="showCommentReplyForm('comment_form_id_mBVhC3ngMw8', 'mBVhC3ngMw8', false); return false;" class="eLink" rel="nofollow">Reply</a>)  
</div> <div id="div_comment_form_id_mBVhC3ngMw8"> </div>
</div> </div> </div> <!-- comment_div_id -->
<div id="div_lgz38mQRNVw&q
|