<!--
	var count             =  6   // number should be between 1 and 10
	var target            = '_new' // '_self' or 'new'

	// *****************************************************************
	//  Be careful not to change anything below this line!
	
	var htmltxt = "";
	var tmp_count = 0;

	var colspan = 2;
	var cellspacing = 0;

	htmltxt += '\n<table cellpadding="0" cellspacing="' + cellspacing + '" border="0">';
	
	for (var i=0; i<tenalerts.length; i+=3) 
	{
		tmp_count++;
		if (tmp_count > count) 
		{
		break;
		} 
		else 
		{
			htmltxt += '\n<tr><td>' 
			+ '<nobr>' + tenalerts[i+0] 
			+ '&nbsp;</nobr></td><td>' 
			+ '<a class=snulink href="' + tenalerts[i+2] + '" target=_blank"' 
			+ target + '"><nobr>' + tenalerts[i+1]
			+ '</nobr></a></td></tr>';
		}  
	}

	htmltxt += '\n<tr></table>';
	
	document.write(htmltxt);
	//--> 
	<!-- Sophos info feed: latest virus alerts - END -->
