function research(varvalue)
{
	//window.document.ricerca.m58TplModel.value = "search";
	window.document.ricerca.m58SearchWords.value = varvalue;
	window.document.ricerca.submit();
}

function changelang(lang)
{
	var f = document.createElement('form'); 
	f.style.display = 'none'; 
	document.body.appendChild(f); 
	f.method = 'post'; 
	f.action = location.href;
	
	var m = document.createElement('input'); 
	m.setAttribute('type', 'hidden'); 
	m.setAttribute('name', 'm58LangNew'); 
	m.setAttribute('value', lang);
	f.appendChild(m);
		
  f.submit();
}

function fopen(url){
 window.open(url,'popup','scrollbars=yes,width=400,height=500,resizable=yes');
}

