var persistclose=1 //set to 0 or 1. 1 means once the bar is manually closed, it will remain closed for browser session

function closebar(){
	window.open("./pdf/cursillos_gratis.pdf");	
	if (persistclose)
		document.cookie="remainclosed=1"
	document.getElementById("topbar").style.visibility="hidden"
}

