function displayContentPage2(url, contentNum, contentSetNum) {
//	window.location = url + "?SMContentIndex=" + contentNum + "&SMContentSet=" + contentSetNum;
	window.open(url + "?SMContentIndex=" + contentNum + "&SMContentSet=" + contentSetNum,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=650,height=300');
}
if (typeof SMContentSet != "undefined") {
        var StartIndex = 0; 	//must be greater or equal to zero
        var EndIndex = 25; 	//larger then StartIndex

        StartIndex = (SMContentSet[0].contents.length>StartIndex)?StartIndex:SMContentSet[0].contents.length;
        EndIndex = (SMContentSet[0].contents.length>EndIndex)?EndIndex:SMContentSet[0].contents.length;

        if(StartIndex > EndIndex) {
        	var n=StartIndex;
        	StartIndex=EndIndex;
        	EndIndex=n;
        }
        
		document.open();
        for (var i = StartIndex; i < EndIndex ; i++) {
			document.write("<tr><td  width=\"14px\" style=\"vertical-align:top\"><img src=\"../images/ico_bullet01.gif\" width=\"9\" height=\"11\"></td><td class=\"gray11_normal\"><A HREF='javascript:displayContentPage2(\"../pages/article.aspx\", " + i + ", " + 0 + ");'>");
			document.write(SMContentSet[0].contents[i].article.title + "</A>");
			document.write("<td nowrap class=\"gray11_normal\">&nbsp;&nbsp;" + prettyDate(SMContentSet[0].contents[i].article.metadata.documentMetadata.publisherReleaseDate) + "");
			document.write("</td></tr><tr><td colspan=\"3\" background=\"../images/dot_line1.gif\" height=\"3\"><img src=\"../images/spacer.gif\" width=\"1\" height=\"4\"></td></tr>");
			if (SMContentSet[0].contents[i].article.core.docAbstract) {
			}
		}

	document.close();
}