var ie4=document.all&&!document.getElementById;
var DOM2=document.getElementById;

if (ie4||DOM2)
  document.write('<div id="articleList" style="border:0px solid black;"></div>');



function showArticleList() {
	var tmpStr = "";
	for (i=0; i<fimg.length; i++) { 
 		tmpStr += " <a href='" + flink[i] + "'><img src='" + fimg[i] + "' alt='" + fdesc[i] +"' width='80' border='0'></a> ";
	}
	document.getElementById("articleList").innerHTML= tmpStr;
}
if (window.addEventListener)
window.addEventListener("load", showArticleList, false)
else if (window.attachEvent)
window.attachEvent("onload", showArticleList)
else if (document.getElementById)
window.onload=showArticleList

