<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1024267" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1024267</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149424</link>
    <description> &lt;p&gt;fixed.&lt;br /&gt;
issue was several fold.&lt;br /&gt;
finished and fixed code to compare for others to fix if they have similar flaws:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;var usr= new Array(&amp;#039;chat&amp;#039;,&amp;#039;control&amp;#039;,&amp;#039;faq&amp;#039;,&amp;#039;finduser&amp;#039;,&amp;#039;forums&amp;#039;,&amp;#039;login&amp;#039;,&amp;#039;logout&amp;#039;,&amp;#039;newm&amp;#039;,&amp;#039;search&amp;#039;,&amp;#039;signup&amp;#039;,&amp;#039;top&amp;#039;);&lt;br /&gt;var rolls=new Array(); // empty image array&lt;br /&gt;var pretxt=&amp;#039;sitepics/&amp;#039;; var endtxt=&amp;#039;.png&amp;#039;; var ind;// variables used to preload&lt;br /&gt;&lt;br /&gt;function preload(imgs){ // preload images&lt;br /&gt;&amp;nbsp; end=imgs.length; // find array size&lt;br /&gt;&amp;nbsp; for(i=0;i&amp;lt;end;i++){ // for each picture&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ind=i*2;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rolls[ind]= new Image();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rolls[ind].src=pretxt+imgs[i]+&amp;#039;on&amp;#039;+endtxt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rolls[++ind]= new Image();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rolls[ind].src=pretxt+imgs[i]+&amp;#039;off&amp;#039;+endtxt;&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;function selopt(choice,bttn){ // mouseover highlight&lt;br /&gt;&amp;nbsp; var i; &lt;br /&gt;&amp;nbsp; for(i=0;((i&amp;lt;bttn.length)&amp;amp;&amp;amp;(bttn[i]!=choice));i++){ document.qsearch.curri.value=i; } &lt;br /&gt;&amp;nbsp; if(i==bttn.length){ return false; } else{ i*=2; document.getElementById(choice).src=rolls[i].src; return true; }&lt;br /&gt;}&lt;br /&gt;function deselopt(choice,bttn){ // mouseout return to load state&lt;br /&gt;&amp;nbsp; var i; &lt;br /&gt;&amp;nbsp; for(i=0;((i&amp;lt;bttn.length)&amp;amp;&amp;amp;(bttn[i]!=choice));i++){ document.qsearch.curri.value=i; }&lt;br /&gt;&amp;nbsp; if(i==bttn.length){ return false; } else{ i*=2; i++; document.getElementById(choice).src=rolls[i].src; return true; }&lt;br /&gt;}&lt;br /&gt;function sub(choice){ document.getElementById(choice).submit(); } // submit a form&lt;br /&gt;&lt;br /&gt;preload(usr);&lt;/code&gt;&lt;/div&gt;&#039;link to thread at other site helpful in fixing this: &lt;a href=&quot;http://forums.devnetwork.net/viewtopic.php?t=20115&quot; class=&quot;bb-url&quot;&gt;http://forums.devnetwork.net/viewtopic.php?t=20115&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 21:54:58 +0000</pubDate>
 <dc:creator>m3rajk</dc:creator>
 <guid isPermaLink="false">comment 1149424 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149409</link>
    <description> &lt;p&gt;i forgot that javascript is very case sensitive&lt;/p&gt;
&lt;p&gt;arg. i&#039;m starting to wonder how anyone can do this without explicit calls...&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: Error: document.getElementById(bttn[choice]) has no properties&lt;br /&gt;
Source File: &lt;a href=&quot;http://24.91.157.113/findyourdesire/ztest.php&quot; class=&quot;bb-url&quot;&gt;http://24.91.157.113/findyourdesire/ztest.php&lt;/a&gt;&lt;br /&gt;
Line: 23&lt;br /&gt;
Error: document.getElementById(bttn[choice]) has no properties&lt;br /&gt;
Source File: &lt;a href=&quot;http://24.91.157.113/findyourdesire/ztest.php&quot; class=&quot;bb-url&quot;&gt;http://24.91.157.113/findyourdesire/ztest.php&lt;/a&gt;&lt;br /&gt;
Line: 28&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;once for selopt nd once for deselopt&lt;/p&gt;
&lt;p&gt;subsequently realizing that i gave the id name the same name as the image  so that it&#039;s &lt;code&gt;&amp;lt;img class=&amp;quot;...&amp;quot; id=&amp;quot;balh&amp;quot; name=&amp;quot;blah&amp;quot; src=&amp;quot;...&amp;quot; /&amp;gt;&lt;/code&gt;&#039;choice should be all i need, so i modified it to &lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;!--&lt;br /&gt;var usr= new Array(&amp;#039;chat&amp;#039;,&amp;#039;control&amp;#039;,&amp;#039;faq&amp;#039;,&amp;#039;finduser&amp;#039;,&amp;#039;forums&amp;#039;,&amp;#039;login&amp;#039;,&amp;#039;logout&amp;#039;,&amp;#039;newm&amp;#039;,&amp;#039;search&amp;#039;,&amp;#039;signup&amp;#039;,&amp;#039;top&amp;#039;);&lt;br /&gt;var rolls=new Array(); // empty image array&lt;br /&gt;var pretxt=&amp;#039;sitepics/&amp;#039;; var endtxt=&amp;#039;.png&amp;#039;; var ind;// variables used to preload&lt;br /&gt;&lt;br /&gt;function preload(imgs){ // preload images&lt;br /&gt;&amp;nbsp; end=imgs.length; // find array size&lt;br /&gt;&amp;nbsp; for(i=0;i&amp;lt;end;++i){ // for each picture&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ind=i*2;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rolls[ind]= new Image();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rolls[ind].src=pretxt+imgs[i]+&amp;#039;on&amp;#039;+endtxt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rolls[++ind]= new Image();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rolls[ind].src=pretxt+imgs[i]+&amp;#039;off&amp;#039;+endtxt;&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;function selopt(choice,bttn){ // mouseover highlight&lt;br /&gt;&amp;nbsp; var i; &lt;br /&gt;&amp;nbsp; for(i=0;((i&amp;lt;bttn.length)&amp;amp;&amp;amp;(bttn[i]!=choice));i++)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(i==bttn.length){ return false; } else{ i*=2; document.getElementById(choice).src=rolls[i].src; return true; }&lt;br /&gt;}&lt;br /&gt;function deselopt(choice,bttn){ // mouseout return to load state&lt;br /&gt;&amp;nbsp; var i; &lt;br /&gt;&amp;nbsp; for(i=0;((i&amp;lt;bttn.length)&amp;amp;&amp;amp;(bttn[i]!=choice));i++)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(i==bttn.length){ return false; } else{ i*=2; i++; document.getElementById(choice).src=rolls[i].src; return true; }&lt;br /&gt;}&lt;br /&gt;function sub(formname){ document.formname.submit(); } // submit a form&lt;br /&gt;&lt;br /&gt;preload&amp;#039;usr);&lt;br /&gt;--&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
and now it changes everything to chat on/off instead of the one it should.&lt;/p&gt;
&lt;p&gt;any suggestions? i haven&#039;t a clue as to what&#039;s failing&lt;/p&gt;
&lt;p&gt;added something to show what i currently is, and it&#039;s never going beyond 0 for some reason. yet the item being passed is obviously changing. i also modified the form submit slightly on a hunch then tested that. it wowrks now, so all i need to get the new modular form working is to get i to actually find the correct indicie (sp?)&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 14:08:48 +0000</pubDate>
 <dc:creator>m3rajk</dc:creator>
 <guid isPermaLink="false">comment 1149409 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149398</link>
    <description> &lt;p&gt;getElementByI&lt;strong&gt;d&lt;/strong&gt;(), not getElementByI&lt;strong&gt;D&lt;/strong&gt;()&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 09:05:25 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1149398 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149388</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;Abhishek Reddy wrote:&lt;/strong&gt; Use one of&lt;br /&gt;
  document.getElementById(bttn)&lt;br /&gt;
  document.images.bttn&lt;br /&gt;
  to select the element.&lt;/p&gt;
&lt;p&gt;  document.all.bttn &amp;lt;-- IE-only; avoid.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;i despise anything ie only. i actually use mozilla since it&#039;s w3c compliant, and is notplauged with cookie and other types of issues like ie.&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:     if(i==bttn.length){ return false; } else{ i*=2; document.images.bttn[choice].src=rolls[i].src; return true; }&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt; is the first i tried. doesn&#039;t work. then that has no properties&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:     if(i==bttn.length){ return false; } else{ i*=2; i++; document.getElementByID(bttn[choice]).src=rolls[i].src; return true; }&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;and it tells me there&#039;s no such function&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Apr 2004 03:04:54 +0000</pubDate>
 <dc:creator>m3rajk</dc:creator>
 <guid isPermaLink="false">comment 1149388 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149374</link>
    <description> &lt;p&gt;Use one of&lt;br /&gt;
  document.getElementById(bttn)&lt;br /&gt;
  document.images.bttn&lt;br /&gt;
  to select the element.&lt;/p&gt;
&lt;p&gt;  document.all.bttn &amp;lt;-- IE-only; avoid.&lt;/p&gt;
 </description>
     <pubDate>Sat, 10 Apr 2004 22:01:40 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1149374 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149354</link>
    <description> &lt;p&gt;i know that images[] is a preset array. &lt;/p&gt;
&lt;p&gt;now it&#039;s giving me&lt;br /&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;Quote: Error: document.bttn has no properties&lt;br /&gt;
Source File: &lt;a href=&quot;http://24.91.157.113/findyourdesire/ztest.php&quot; class=&quot;bb-url&quot;&gt;http://24.91.157.113/findyourdesire/ztest.php&lt;/a&gt;&lt;br /&gt;
Line: 23&lt;br /&gt;
Error: document.bttn has no properties&lt;br /&gt;
Source File: &lt;a href=&quot;http://24.91.157.113/findyourdesire/ztest.php&quot; class=&quot;bb-url&quot;&gt;http://24.91.157.113/findyourdesire/ztest.php&lt;/a&gt;&lt;br /&gt;
Line: 28&lt;/blockquote&gt;&lt;/p&gt;
&lt;p&gt;for selopt and deselopt respectively&lt;/p&gt;
&lt;p&gt;in the one i have now i have id and name in the image tag. should that get moved to the link tag? would that have any effect? makes more sense to me to have it on the image tag, but that&#039;s the only thing i can think of as of now&lt;/p&gt;
&lt;p&gt;also i checked the submit. works if i explicitly call the form name in the function, but otherwise, even though i&#039;ve changed it to formname since form[] is a reserved, it gives me the error that it can&#039;t find the form on the page&lt;/p&gt;
 </description>
     <pubDate>Sat, 10 Apr 2004 18:49:16 +0000</pubDate>
 <dc:creator>m3rajk</dc:creator>
 <guid isPermaLink="false">comment 1149354 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149342</link>
    <description> &lt;p&gt;try renaming  &#039;array&#039; -- everywhere you use it.  You shouldn&#039;t be using reserved words for variableNames  (and I would also change &#039;imgs&#039; to  &#039;myImgs&#039; or somesuch.&lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
 </description>
     <pubDate>Sat, 10 Apr 2004 17:15:12 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1149342 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149341</link>
    <description> &lt;p&gt;i found some other errors too and fixed them. now the line number it&#039;s on changes, but the error is the same and there&#039;s no highlight (have not tried the submit, i figure let&#039;s get it working one part at a time)&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: Error: document.array has no properties&lt;br /&gt;
Source File: &lt;a href=&quot;http://24.91.157.113/findyourdesire/ztest.php&quot; class=&quot;bb-url&quot;&gt;http://24.91.157.113/findyourdesire/ztest.php&lt;/a&gt;&lt;br /&gt;
Line: 24&lt;/p&gt;&lt;/blockquote&gt;
 </description>
     <pubDate>Sat, 10 Apr 2004 16:54:59 +0000</pubDate>
 <dc:creator>m3rajk</dc:creator>
 <guid isPermaLink="false">comment 1149341 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149296</link>
    <description> &lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Error 1: function preload(var imgs){ // preload images&lt;br /&gt;
javascript is not c/c++ where you need to type the arguments.&lt;br /&gt;
  Should be: function preload(imgs){ // preload images&lt;/p&gt;
&lt;p&gt;Also...why...&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;function &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;sub&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;form&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;)&lt;br /&gt;{&lt;br /&gt; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;document&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;form&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;submit&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;();&lt;br /&gt; } &lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;// submit a form&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;--&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;amp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;lt&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;script&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;amp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;gt&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&amp;nbsp; &amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;head&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;body style&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;background-color:#000000; color:#ffffff; \&quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- nav bar--&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;amp;lt;script type=\&quot;text/javascript\&quot;&amp;amp;gt;&amp;lt;!-- preload(usr); --&amp;gt;&amp;amp;lt;/script&amp;amp;gt;&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;instead of:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;....&lt;br /&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;preload&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;usr&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;); &lt;br /&gt;&amp;nbsp; &amp;amp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;lt&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;script&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;amp;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;gt&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&amp;nbsp; &amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;head&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;body style&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;background-color:#000000; color:#ffffff; \&quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- nav bar--&amp;gt;&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;the former is somewhat confusing, especially since it&#039;s implying the &#039;preload&#039; function is part of the navbar.  &lt;/p&gt;
&lt;p&gt;This:&lt;br /&gt;
  var i; for(i=0; ( (i&lt;/p&gt;
 </description>
     <pubDate>Fri, 09 Apr 2004 20:26:36 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1149296 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-condensation#comment-1149278</link>
    <description> &lt;p&gt;hey vincet. it&#039;s been a while. i think it&#039;s the off track humor that i think i needed when i saw it that confuzzled you.&lt;/p&gt;
&lt;p&gt;the problem is that the roll over is not working (i&#039;m testing in mozilla). it tells me the functions aren&#039;t defined when i know they are.  i don&#039;t get why. i don&#039;t even know if the preload is working because of that. i don&#039;t know how to fix it&lt;/p&gt;
&lt;p&gt;i&#039;m trying to do this so that i can switch out the arrays being used.&lt;/p&gt;
&lt;p&gt;i&#039;ll need at least three:&lt;br /&gt;
1 for the mail/im pics in one page&lt;br /&gt;
1 for the navigation bar&lt;br /&gt;
1 for the forums so i can do an image swap for those buttons (graphics designer wants that now)&lt;/p&gt;
&lt;p&gt;so i need to get the new swap function working as well as the submit for the forms&lt;/p&gt;
 </description>
     <pubDate>Fri, 09 Apr 2004 14:59:26 +0000</pubDate>
 <dc:creator>m3rajk</dc:creator>
 <guid isPermaLink="false">comment 1149278 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
