function WriteLinks(){
	var link = new Array(
		"http://speed.sii.co.jp/pub/corp/pr/newsDetail_en.jsp?news=50620",
		"http://speed.sii.co.jp/pub/corp/pr/newsDetail_en.jsp?news=50556"		
		);
	var date = new Array(
		"8/4",
		"6/8"
		);
	var news = new Array(
		"SOMA Alti-Compass is Released <br>Outdoor Sports Watch with Quality and Functionality",
		"SII NanoTechnology Newly Releases High Sensitivity Differential Scanning Calorimeter X-DSC7000"
		);
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>"
			);
}