I have an external Javascript file that I have linked to my html file. The positioning works fine until I try to use an external Javascript file. The RSS feed goes to the top of my page when I link in the head. Can I put the link anywhere on my html file or does it have to be in the head. I want the RSS feed to be under the "newsfeed" id. I also left out some of the info for my page because I only need to show the div and css.Here's my html code:\[code\]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>GamerZone</title> <link type="text/css" rel="stylesheet" href="http://stackoverflow.com/questions/15837977/index.css" /> <link rel="shortcut icon" type="icon/ico" href="http://stackoverflow.com/questions/15837977/images/icon.ico" /> <script type="text/javascript" src="http://stackoverflow.com/questions/15837977/rss-feed.js"></script> </head><body> <div id="allcontent"> <div id="banner"> <a target="_self" href="http://stackoverflow.com/questions/15837977/index.html" title=""> <img src="http://stackoverflow.com/questions/15837977/images/banner.jpg" border="0" alt="GamerZone Banner"> </a> </div> <div class="container"> <ul class="nav"> <li class="nav-home"> <a href="http://stackoverflow.com/questions/15837977/index.html">Home</a> </li> <li class="nav-games"> <a href="http://stackoverflow.com/questions/15837977/games.html">Games</a> </li> <li class="nav-chat"> <a href="http://stackoverflow.com/questions/15837977/chat.html">Chat</a> </li> <li class="nav-suggestions"> <a href="http://stackoverflow.com/questions/15837977/suggestions.html">Suggestions</a> </li> </ul> </div> <div id="newsfeed"> //RSS feed goes here </div> <div id="footer"> </div> </div></body></html>\[/code\]Here's my css code:\[code\]#allcontent { width: 1000px; padding-top: 5px; padding-bottom: 5px; background-color: ; margin-left: auto; margin-right: auto;}#poll { background-color: white; float: left; padding: 0px 5px 5px 5px; margin: 15px 10px 10px 22px; font-family: Tahoma;}#newsfeed { padding: 15px; margin: 0px 10px 10px 10px;}\[/code\]Here's my Javascript code:\[code\]<!-- rssfeed_url = new Array(); rssfeed_url[0]="http://news.yahoo.com/rss/gaming";rssfeed_frame_width="500"; rssfeed_frame_height="720"; rssfeed_scroll="on"; rssfeed_scroll_step="6"; rssfeed_scroll_bar="on"; rssfeed_target="_blank"; rssfeed_font_size="14"; rssfeed_font_face=""; rssfeed_border="on";rssfeed_css_url="http://example.com/newsfeed.css";rssfeed_title="on"; rssfeed_title_name=""; rssfeed_title_bgcolor="#3366ff"; rssfeed_title_color="#fff"; rssfeed_title_bgimage="http://"; rssfeed_footer="off"; rssfeed_footer_name="rss feed"; rssfeed_footer_bgcolor="#fff"; rssfeed_footer_color="#333"; rssfeed_footer_bgimage="http://"; rssfeed_item_title_length="50"; rssfeed_item_title_color="#666"; rssfeed_item_bgcolor="#fff"; rssfeed_item_bgimage="http://"; rssfeed_item_border_bottom="on"; rssfeed_item_source_icon="off"; rssfeed_item_date="off"; rssfeed_item_description="on"; rssfeed_item_description_length="120"; rssfeed_item_description_color="#666"; rssfeed_item_description_link_color="#333"; rssfeed_item_description_tag="off"; rssfeed_no_items="0"; rssfeed_cache = "7872565d53aadc6c14b4ab1bb3f79bdb"; //--> (function(){var a=window;var b="";for(i=0;i<a.rssfeed_url.length;i++) { b=b+"rssfeed["+i+"]="+encodeURIComponent(a.rssf...ion and isn't allowed then disregard. Thanks.