	var articles = new Array()
	var global_article_counter = 0
	var article = null
	var no_data = 0

	function sa(url,search_url,name_url)
	{
		
		this.url = url
		this.search_url = search_url
		this.name_url = name_url
	}

	article = new Array(


// limit: 10

);

	// load articles array with articles from cluster
	var n_stories = article.length
	if (article != null)
	{
		for (var article_counter = 0; article_counter < n_stories; article_counter++)
		{
			articles[global_article_counter] = article[article_counter]
			global_article_counter++
		}
	}
	else
	{
		if (no_data == 0)
		{
			document.writeln("<font size=2 style='{font-family: Arial, Helvetica, sans-serif; font-size:8pt; } face='Arial'>Please reload this page to see the latest news stories from <a href='http://www.digitallook.com'>Digital Look</a>.</font>")
			no_data = 1
		}
	}

	if ((no_data == 0) && (n_stories > 0))
	{
		var width = "100%"
		var border_color = "000000"
		var border_width = "0"
		var story_type = ""
		var n_colspan = "2"
		var heading_display = ""
		var first_width_pcent = 60
		var print_col_headers_once = 1

		//font setups
		var col_bgcolor = "ffffff"
		var col_font = "arial,verdana"
		var col_font_size = "2"
		var col_fgcolor = "000000"

		// print out the table containing the articles
		document.writeln("<center><table bgcolor='#ffffff' bordercolor='#"+border_color+"' cellpadding='2' cellspacing='0' border='"+border_width+"' width='"+width+"'><tr><td><table bgcolor='#ffffff' cellpadding='0' cellspacing='1' width='"+width+"'>")

		// start loop through articles
		for (var i=0; i < n_stories; i++)
		{
		article_date_bgcolor = "ffffff"
		article_date_font = "arial,verdana"
		article_date_font_size = "1"
		article_date_fgcolor = "000000"
		article_date_style = "style='text-decoration: underline; font-size:10pt'"
		date_bgcolor = "ffffff"
		date_font = "arial,verdana"
		date_font_size = "2"
		date_fgcolor = "000000"
		date_style = ""
		description_bgcolor = "ffffff"
		description_font = "arial,verdana"
		description_font_size = "2"
		description_fgcolor = "000000"
		description_style = ""
		site_code_bgcolor = "ffffff"
		site_code_font = "arial,verdana"
		site_code_font_size = "1"
		site_code_fgcolor = "0000FF"
		site_code_style = "style='text-decoration: underline; font-size:10pt'"
		title_bgcolor = "ffffff"
		title_font = "arial,verdana"
		title_font_size = "1"
		title_fgcolor = "0000ff"
		title_style = "style='text-decoration: underline; font-size:10pt'"
		type_code_bgcolor = "ffffff"
		type_code_font = "arial,verdana"
		type_code_font_size = "2"
		type_code_fgcolor = "000000"
		type_code_style = ""
		name_bgcolor = "ffffff"
		name_font = "arial,verdana"
		name_font_size = "1"
		name_fgcolor = "0000FF"
		name_style = "style='text-decoration: underline; font-size:10pt'"
		link_size = "2"
		link_font = "arial,verdana"
		link_fgcolor = "blue"
		link_style = ""

			// check for new story type, if so print new heading.
			if ((story_type != articles[i].type_code) && (heading_display == "yes"))
			{
				// set current story_type to new story_type
				story_type = articles[i].type_code
				print_col_headers_once = 1

				// print a new story_type heading
				document.writeln("<tr><td colspan="+n_colspan+">&nbsp;</td></tr>")
				document.writeln("<tr bgcolor='#"+type_code_bgcolor+"'><td valign=top colspan=3>")
				document.writeln("<font size="+type_code_font_size+" face="+type_code_font+" color='#"+type_code_fgcolor+"'>")
				document.writeln("<b>"+articles[i].type_code+"</b></font></td></tr>")
			}
			// print columns based on package.
			document.writeln("<tr bgcolor='#"+title_bgcolor+"'>")
		document.writeln("<td valign=topwidth="+first_width_pcent+"%>")
		document.writeln("<a "+link_style+" href="+articles[i].url+" target=_blank>")
		document.writeln("<font "+title_style+" size="+title_font_size+" face="+title_font+" color='#"+title_fgcolor+"'>")
document.writeln(articles[i].title+"</font></a><br></td>")
		document.writeln("<td valign=top>")
		document.writeln("<a "+link_style+" href="+articles[i].search_url+" target=_blank>")
		document.writeln("<font "+site_code_style+" size="+site_code_font_size+" face="+site_code_font+" color='#"+site_code_fgcolor+"'>")
document.writeln("("+articles[i].site_code+")</font></a><br></td>")
			document.writeln("</tr>")
		} // end of article loop

		document.writeln("</table></td></tr></table>")
		document.writeln("</center>")
	}
	else
	{
		if (n_stories < 1)
		{
			document.writeln("<font size=2 style='{font-family: arial, Helvetica, sans-serif; font-size:8pt; } face='Arial'>There are no recent news stories available.</font>")
		}
	}
		document.writeln("<br><table border=0 width=100%><tr><td align=center valign=bottom width=100%><font face='verdana,arial' size=1 color='#000000'></font><a href='http://www.digitallook.com' target='new'>Nachrichten von DIGITAL LOOK zur Verfügung gestellt.</a></td></tr></table>")
