// JavaScript Document

function hideDiv(id){
	document.getElementById(id).style.visibility = "hidden";
	document.getElementById(id).style.display = "none";
}

function showDiv(id){
	document.getElementById(id).style.visibility = "visible";
	document.getElementById(id).style.display = "block";
}

function showLogin(){
	window.open ('investisseurs_login.php', 'Message', config='height=400, width=500, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
}
