function show(sText,sMain){
	oText = document.getElementById(sText);
	oMain = document.getElementById(sMain);
	if(oText.style.display == 'none' || oText.style.display == ''){
		oText.style.display = 'block';
		oMain.className = 'infolinkopen';
	}else{
		oText.style.display = 'none';
		oMain.className = 'infolink';
	}
}