function sophosa() {
	<!--
	
	// Want to customise the look and feel of the virus information // on your site? Simply change the following values to your own // preferences.
	//
	// Changing the value of 'count' will change the number of rows // displayed.
	// Changing the value of 'target' to 'new' will display the link in // a new window.
	
	// *****************************************************************
	
	var bgcolour_main     = '#F0F0F0'
	var bgcolour_heading  = '#F0F0F0'
	var text_colour       = '#000000'
	var link_colour       = '#333366'
	var font_size         = '1'
	var font_face         = 'verdana, arial, helvetica, sans-serif'
	var count             =  10   // number should be between 1 and 10
	var first_column      = 'yes' // 'yes' or 'no'
	var cellspacing       = 'yes' // 'yes' or 'no'
	var target            = '_self' // '_self' or 'new'
	
	// *****************************************************************
	//  Be careful not to change anything below this line!
	
	
	var htmltxt = "";
	var tmp_count = 0;
	    
	if (first_column == "no") {
	  colspan = 1;
	} else {
	  colspan = 2;
	}
	
	if (cellspacing == "no") {
	  cellspacing = 0;
	} else {
	  cellspacing = 2;
	}  
	
	if (count > 0) {
	  if (count > 10) {count = 10}
	  htmltxt += '\n<table>';
	  if (count == 1) {
	    htmltxt += '\n<tr><td colspan="' + colspan + '">' + '<strong>Latest virus alert</strong></td></tr>';
	  }
	  else { 
	    htmltxt += '\n<tr><td colspan="' + colspan + '">' + '<strong>Latest ' + count + ' virus alerts</strong></td></tr>';
	  }
	
	  for (var i=0; i<tenalerts.length; i+=3) {
	    tmp_count++;
	    if (tmp_count > count) {
	      break;
	    } else {
	      if (first_column == "no") {
	        htmltxt += '\n<tr><td>' + '<a href="' + tenalerts[i+2] + '" target="' + target + '"><nobr>' + tenalerts[i+1] + '</nobr></a></td></tr>';
	      } else {  
	        htmltxt += '\n<tr><td>' + '<nobr>' + tenalerts[i+0] + '</nobr></td><td>' + '<a href="' + tenalerts[i+2] + '" target="' + target + '"><nobr>' + tenalerts[i+1]+ '</nobr></a></td></tr>';
	      }
	    }
	  }
	} else {
	  document.getElementById("sophos1").innerHTML = "=== Sophos info feed error: Specify value of count > 0 ==="; }
	
	// Please do not remove the code after this point. 
	
	htmltxt += '\n<tr><td colspan="' + colspan + '">' + 'Source: <a href="http://www.sophos.com" target="' + target + '">Sophos</a></td></tr>';
	htmltxt += '\n<tr><td colspan="' + colspan + '"><a href="http://www.sophos.com/virusinfo/infofeed/" target="' + target + '">Add this info to your website</a></td></tr>';
	htmltxt += '\n</table>';
	document.getElementById("sophos1").innerHTML = htmltxt;
	//-->
}

function sophosb() {
	<!--
	
	// Want to customise the look and feel of the virus information // on your site? Simply change the following values to your own // preferences.
	//
	// Changing the value of 'count' will change the number of rows // displayed.
	// Changing the value of 'target' to 'new' will display the link in // a new window.
	
	// *****************************************************************
	
	var bgcolour_main     = '#F0F0F0'
	var bgcolour_heading  = '#F0F0F0'
	var text_colour       = '#000000'
	var link_colour       = '#333366'
	var font_size         = '1'
	var font_face         = 'verdana, arial, helvetica, sans-serif'
	var count             =  7  // number should be between 1 and 10
	var first_column      = 'yes' // 'yes' or 'no'
	var cellspacing       = 'yes' // 'yes' or 'no'
	var target            = '_self' // '_self' or 'new'
	
	// *****************************************************************
	//  Be careful not to change anything below this line!
	
	
	var htmltxt = "";
	var font_desc = '<font face="' + font_face + '" size="'
	  + font_size + '" color="' + text_colour + '">'; var tmp_count = 0;
	    
	if (first_column == "no") {
	  colspan = 1;
	} else {
	  colspan = 2;
	}
	
	if (cellspacing == "no") {
	  cellspacing = 0;
	} else {
	  cellspacing = 2;
	}  
	
	if (count > 0) {
	  if (count > 10) {count = 10}
	  htmltxt += '\n<table>';
	  if (count == 1) {
	    htmltxt += '\n<tr><td colspan="' + colspan + '">' + '<strong>Top virus hoax</strong></td></tr>';
	  } else { 
	    htmltxt += '\n<tr><td colspan="' + colspan + '"><strong>Top ' 
	    + count + ' virus hoaxes</strong></td></tr>';
	  }
	
	  for (var i=0; i<hoax.length; i+=3) {
	    tmp_count++;
	    if (tmp_count > count) {
	      break;
	    } else {
	      if (first_column == "no") {
	        htmltxt += '\n<tr><td>' 
	        + font_desc + '<a href="' + hoax[i+2] + '" target="' 
	        + target + '"><nobr>' + hoax[i+1]
	        + '</nobr></a></td></tr>';
	      } else {  
	        htmltxt += '\n<tr><td>' 
	        + font_desc + '<nobr>' + hoax[i+0] 
	        + '</nobr></font></td><td>' 
	        + '<a href="' + hoax[i+2] + '" target="' 
	        + target + '"><nobr>' + hoax[i+1]
	        + '</nobr></a></td></tr>';
	      }
	    }
	  }
	} else {
	  document.getElementById("sophos2").innerHTML =
	  "=== Sophos info feed error: Specify value of count > 0 ==="; }
	
	// Please do not remove the code after this point. 
	
	htmltxt += '\n<tr><td colspan="' + colspan + '">' + 'Source: <a href="http://www.sophos.com" target="' 
	+ target + '">Sophos</a></td></tr>';
	htmltxt += '\n<tr><td colspan="' + colspan + '">' + '<a href="http://www.sophos.com/virusinfo/infofeed/" target="' 
	+ target + '">Add this info to your website</a></td></tr>';
	htmltxt += '\n</table>';
	
	document.getElementById("sophos2").innerHTML = htmltxt;
	//-->
}

function popoutnav() {
	var browserName = navigator.appName; 
	var browserVer = parseInt(navigator.appVersion); 
	if (!((browserName == "Microsoft Internet Explorer") && (browserVer <= 6))) {
		document.getElementById("jsnav").innerHTML = '<h2>Navigation</h2>\n'
		+ '<ul title="Navigation">\n'
		+ '<li><a href="#">SERVICES &gt;&gt;</a>\n'
		+ '<ul title="Services">\n'
		+ '<h2>Services</h2>\n'
		+ '<li><a href="security.aspx" title="Security">Security</a></li>\n'
		+ '<li><a href="monitor.aspx" title="Monitoring">Monitoring</a></li>\n'
		+ '<li><a href="networks.aspx" title="Networking">Networking</a></li>\n'
		+ '<li><a href="op_sys.aspx" title="Operating Systems">Operating Systems</a></li>\n'
		+ '<li><a href="help.aspx" title="Helpdesk and Support">Helpdesk and Support</a></li>\n'
		+ '<li><a href="postini.aspx" title="Email Spam Filtering">Email Spam Filtering</a></li>\n'
		+ '<li><a href="appdev.aspx" title="Application Development">Application Development</a></li>\n'
		+ '<li><a href="certificate.aspx" title="Certifications">Certifications</a></li>\n'
		+ '</ul>\n'
		+ '</li>\n'
		+ '<li><a href="https://www.trendcs.com/clients">CLIENT LOG-ON</a></li>\n'
		+ '<li><a href="contact.aspx" title="Contact Us">CONTACT US</a></li>\n'
		+ '<li><a href="location.aspx" title="Locations">LOCATION</a></li>\n'
		+ '<li><a href="comp_prof.aspx" title="Company Profile">COMPANY PROFILE</a></li>\n'
		+ '</ul>\n';
	}
}

function populatepage() {
	sophosa();
	sophosb();
	popoutnav();
}

function populatepageb() {
	popoutnav();
}