Nice list David and so nice of you to share it with us!!!
Thanks!
__________________ Linda Buquet :: Affiliate Recruiting, Promotion & PR
The free forum support we provide is made possible by all the 5 Star programs at the top of the right sidebar & in the directory below. Please visit & support our merchants.
Re: SEO, Marketing, and Site Security feeds for your RSS reader
Wow, that's really a worthy information..The people those who are new to SEO and SEM like me they can gain a lot's of knowledge from you..Thanks a lot for your efforts..
That's a mighty list. Would be worth setting up a feed reader for this alone. On a couple of my sites I just use Moreover. The code:
PHP Code:
<script language="Javascript">
// the array global_article is used to allow multiple categories
var global_article = new Array()
var global_article_counter = 0
var article = null
var early_exit = 0
var moreover_text = 0;
// do not remove this function clone()
function load_wizard()
{
var newwin = window.open("","clone","resizable,scrollbars,width=500");
document.forms.moreover_clone.submit();
return true;
}
// end of do not remove this function clone()
</script>
<script language="Javascript" src="http://p.moreover.com/cgi-local/page?index_searchengines+js">
</script>
<script language="Javascript">
// load global_article array with articles from cluster
if (article != null)
{
for (var article_counter = 0; article_counter < Math.min(10,article.length); article_counter++)
{
global_article[global_article_counter] = article[article_counter]
global_article[global_article_counter].url += "' TARGET='_blank"
global_article[global_article_counter].document_url += "' TARGET='_blank"
global_article_counter++
}
}
else
{
if (early_exit == 0)
{
document.writeln("<center>Please reload this page to view the headlines</center>")
early_exit = 1
}
}
</script>
<script language="Javascript" src="http://p.moreover.com/dr/wizard_text.js"></script>
<script language="Javascript">
if (early_exit == 0)
{
var width = "300"
var category = ""
var numberofarticles = global_article.length
var item_spacing = "5"
var cluster_bgcolor = "ffffff"
var cluster_border = "0"
var heading_display = "Yes"
var time_display = "Yes"
var cell_spacing = "0"
var cell_padding = "4"
var heading_bgcolor
var heading_font
var heading_font_size
var heading_fgcolor
var headline_bgcolor
var headline_font
var headline_font_size
var headline_fgcolor
var source_font
var source_font_size
var source_fgcolor
var access_font
var access_font_size
var access_fgcolor
var time_font
var time_font_size
var time_fgcolor
var time = new Array(global_article.length)
// Print out the table containing the headlines
document.writeln("<CENTER><TABLE BORDER="+cluster_border+" BGCOLOR='#"+cluster_bgcolor+"' WIDTH='"+width+"' CELLPADDING=2 CELLSPACING=0>")
document.writeln("<tr><td align='center'><img src='http://i.moreover.com/images/moreover_wizard_link.gif' border='0'></td></tr>")
document.writeln("<TR><TD><CENTER><TABLE BGCOLOR='#"+cluster_bgcolor+"' CELLPADDING="+cell_padding+" CELLSPACING="+cell_spacing+" WIDTH='100%'>")
// Check for new category
if ((category != global_article[counter].cluster) && (heading_display == "Yes"))
{
// Set current category to new category
category = global_article[counter].cluster
// Print a new category heading
document.writeln("<TR BGCOLOR='#"+heading_bgcolor+"'><TD>")
document.writeln("<FONT SIZE="+heading_font_size+" FACE="+heading_font+" COLOR='#"+heading_fgcolor+"'>")
document.writeln("<B>"+global_article[counter].cluster+"</B></FONT></TD></TR>")
}
// Print out the headline
document.writeln("<TR BGCOLOR='#"+headline_bgcolor+"'><TD><A HREF='"+global_article[counter].url+"' >")
document.writeln("<FONT SIZE="+headline_font_size+" FACE="+headline_font+" COLOR='#"+headline_fgcolor+"'")
document.writeln(">"+global_article[counter].headline_text+"...</FONT></A>")
// Print out the source
if ((counter != (global_article.length - 1)) || moreover_text != 1)
{
document.writeln("<A HREF='"+global_article[counter].document_url+"' >")
document.writeln("<FONT FACE="+source_font+" SIZE="+source_font_size+" COLOR='#"+source_fgcolor+"'>")
document.writeln(""+global_article[counter].source+"</FONT></A> ")
}
// Print out reg/sub if appropriate
if (global_article[counter].access_status == "sub" || global_article[counter].access_status == "reg")
{
document.writeln(" <A HREF='"+global_article[counter].access_registration+"'>")
document.writeln("<FONT FACE="+access_font+" SIZE="+access_font_size)
document.writeln(" COLOR='#"+access_fgcolor+"'>"+global_article[counter].access_status+"</FONT></A> ")
}
// Print out the harvest time
if (time_display == "Yes")
{
// Make a new date object
time[counter] = new Date(global_article[counter].harvest_time)
time[counter].setHours(time[counter].getHours() - (time[counter].getTimezoneOffset() / 60 )) // adjust the time to local
document.writeln("<FONT FACE="+time_font+" SIZE="+time_font_size+" COLOR='#"+time_fgcolor+"'>")
document.writeln(""+time[counter].toString()+"</FONT>")
}
document.writeln("</TD></TR><TR BGCOLOR='#"+headline_bgcolor+"'><TD BGCOLOR='#"+headline_bgcolor+"' HEIGHT="+item_spacing+"></TD></TR>")
} // End of article loop