// JavaScript Document
function privacy(open, id){
	if(open=='true'){
		//alert(id);
		document.getElementById(id).style.display = "block";
}else if(open=='false'){
		//alert(id);
		document.getElementById(id).style.display = "none";
}else{
		alert("Problem with privacy policy");
	};
};