/* Copyright Netmedia */

function showNews()
	{
	var lType="f";
	if (!inFrench)	lType="e";
	document.location.href=lType+"old"+document.news.changeNews[document.news.changeNews.selectedIndex].text+".htm";
	}

function newsSelect()
	{	
	document.writeln("<form name='news'>");
	document.writeln("<select name='changeNews' onChange='showNews();'>");
	document.writeln("<option>");
	document.writeln("<option>12-98");
	document.writeln("<option>11-98");	
	document.writeln("</select>");
	document.writeln("</form>");
	}
	

