// Styring af visning og skjulning af datoer under specifikke messer
function skjulvis_datoer(company_id, dato_status){
	if(dato_status == "1"){
		document.getElementById("skjulvis_dato_"+company_id).innerHTML = '<a style="color: #666666;" style="cursor: hand;" onclick="skjulvis_datoer('+company_id+', 0);">messe & stand</a>';
		document.getElementById('datoer_'+company_id).style.display = '';
	}else{
		document.getElementById("skjulvis_dato_"+company_id).innerHTML = '<a style="color: #666666;" style="cursor: hand;" onclick="skjulvis_datoer('+company_id+', 1);">messe & stand</a>';
		document.getElementById('datoer_'+company_id).style.display = 'none';
	}
}

// Styring af visning og skjulning af læs om tekster på messerne
function skjulvis_om_messen(language, company_id, messe_text_status){
	//if(language == "dk" || language == 0){
	if(language == "dk" || language == 0){
		about_the_fair = "om messen";
		language = 0;
	}else if(language == "es" || language == 1){
		about_the_fair = "acerca de la feria";
		language = 1;
	}
	
	if(messe_text_status == "1"){
		document.getElementById("skjulvis_om_messen_"+company_id).innerHTML = '<a style="color: #666666;" style="cursor: hand;" onclick="skjulvis_om_messen('+language+', '+company_id+', 0);">'+about_the_fair+' </a>';
		document.getElementById("om_messen_"+company_id).style.display = '';
	}else{
		document.getElementById("skjulvis_om_messen_"+company_id).innerHTML = '<a style="color: #666666;" style="cursor: hand;" onclick="skjulvis_om_messen('+language+', '+company_id+', 1);">'+about_the_fair+' </a>';
		document.getElementById("om_messen_"+company_id).style.display = 'none';
	}
}

// Styring af visning og skjulning af læs om producenten på messerne
function skjulvis_om_udstilleren(company_id, messe_text_status){
	if(messe_text_status == "1"){
		document.getElementById("skjulvis_om_udstilleren_"+company_id).innerHTML = '<a style="color: #666666;" style="cursor: hand;" onclick="skjulvis_om_udstilleren('+company_id+', 0);">om virksomheden</a>';
		document.getElementById("om_udstilleren_"+company_id).style.display = '';
	}else{
		document.getElementById("skjulvis_om_udstilleren_"+company_id).innerHTML = '<a style="color: #666666;" style="cursor: hand;" onclick="skjulvis_om_udstilleren('+company_id+', 1);">om virksomheden</a>';
		document.getElementById("om_udstilleren_"+company_id).style.display = 'none';
	}
}

// Styring af visning og skjulning af udstiller facts på messerne
function skjulvis_udstiller_facts(company_id, udstiller_text_status){
	if(udstiller_text_status == "1"){
		document.getElementById("skjulvis_udstiller_facts_"+company_id).innerHTML = '<a style="color: #666666;" style="cursor: hand;" onclick="skjulvis_udstiller_facts('+company_id+', 0);">messe & stand</a>';
		document.getElementById("udstiller_facts_"+company_id).style.display = '';
	}else{
		document.getElementById("skjulvis_udstiller_facts_"+company_id).innerHTML = '<a style="color: #666666;" style="cursor: hand;" onclick="skjulvis_udstiller_facts('+company_id+', 1);">messe & stand</a>';
		document.getElementById("udstiller_facts_"+company_id).style.display = 'none';
	}
}
