var text = new Array("Norway s expansion of human rights","Congratulations California: Dreams come true","John Tory s faith-based funding is a loser","Visibility is key to protecting human rights","Counting what matters with gay marriage","Bank employees linking with communities");  // this is the text to display
var link = new Array("http://www.samesexmarriage.ca/equality/nor170608.htm","http://www.samesexmarriage.ca/legal/cal180508.htm","http://www.samesexmarriage.ca/advocacy/oos280907.htm","http://www.samesexmarriage.ca/advocacy/vis240907.htm","http://www.samesexmarriage.ca/advocacy/cen210907.htm","http://www.samesexmarriage.ca/advocacy/ptb200907.htm");  // make sure these are absolute links to accommodate other websites using this code.
var i,content;

content = "&nbsp;";
content = content  +  "<table border='1' cellspacing='0' bordercolor='#990000' width='200' cellpadding='5'>";
content = content  + "<tr><td><center><img src='http://www.samesexmarriage.ca/images/news.gif' height='33' width='175'></center><p><font size='2'>";

for( i=0; i<text.length; i++ ) {
  content = content + "<a href='" + link[i] + "' target='_blank'>" + text[i] + "</a><p>";
}

content = content  + "<center><br>Put Equal Marriage News<br>on your website!";
content = content  + "<br><a href='http://www.samesexmarriage.ca/links/link_to_us.html#news' target='_blank'>Click here</a></center>";
content = content  + "</td></tr></table>";

document.write(content);