function showprivacy(el){
	$(el).style.display = '';
	center_on_screen($(el));
}

function hideprivacy(el){
	$(el).style.display = 'none';
}

function showterms(el){
	$(el).style.display = '';
	center_on_screen($(el));
}

function hideterms(el){
	$(el).style.display = 'none';
}