function WriteLinks(){
	var link = new Array(
		"http://www.sii.co.jp/corp/pr/newsDetail_en.jsp?news=50919",
		"http://www.sii.co.jp/corp/pr/newsDetail_en.jsp?news=50911"		
		);
	var date = new Array(
		"12/19",
		"12/19"
		);
	var news = new Array(
		"Launch of the SFT9500X Series High-Performance Fluorescent X-Ray Coating Thickness Gauge",
		"Launching the SEA-Hybrid X-ray Particle Inspection System for Lithium Ion Batteries and Fuel Cells"
		);
document.write(
				"<dl>"
			);
	var i = 0;
	while ( link[i] != null )
	{

			document.write(
				"<dt>" + date[i] + "</dt><dd><a href='" + link[i] + "'>" + news[i] + "</a></dd>"
			);
		i++;
	}
document.write(
				"</dl>"
			);
}
