function ConnexionEspacePro() {
	var dbpath="blogTryba.nsf";
	Form = '<html><head></head>'
	Form +='<body text="#000000" bgcolor="#aaaaaa" >'
	Form +='Connexion ...... Veuillez patienter.' 
	Form +='<form method="post" action="/'+dbpath+'?Login" name="_DominoForm">'
	Form +='<input name="Username" value="'+document.forms[0].Username.value+'" maxlength=256 SIZE=40 type=hidden>'
	Form +='<input name="Password" value="'+document.forms[0].Password.value+'" maxlength=256 SIZE=40 type=hidden>'
	Form +='<input name="RedirectTo" value="/'+dbpath+'" type=hidden>'
	Form +='</body></html>'
	document.write(Form)
	document.forms[0].submit();
}
function panneauConnexion(){
	var zLogDisp = window.document.getElementById('zoneLogin').style.display;
	if (zLogDisp=='none'){
		window.document.getElementById('zoneLogin').style.display = "block";
		if (window.document.getElementById('bannerBlog').style.backgroundImage.indexOf("Private") != -1){
			window.document.getElementById('zoneLogin').style.backgroundImage = "url('../bgConnexionPriv.jpg')"
			window.document.getElementById('zoneConnexion').style.backgroundImage = "url('../boutonConnexionPrivOpen.jpg')"
		}else{
			window.document.getElementById('zoneLogin').style.backgroundImage = "url('../bgConnexion.jpg')"
			window.document.getElementById('zoneConnexion').style.backgroundImage = "url('../boutonConnexionOpen.jpg')"
		}
	}else{
		window.document.getElementById('zoneLogin').style.display = "none";
		if (window.document.getElementById('bannerBlog').style.backgroundImage.indexOf("Private") != -1){
			window.document.getElementById('zoneConnexion').style.backgroundImage = "url('../boutonConnexionPriv.jpg')";
		}else{
			window.document.getElementById('zoneConnexion').style.backgroundImage = "url('../boutonConnexion.jpg')";
		}
	}
}
function sendSite(email){
	if(email != "" && email != null){
		window.location.href="mailto:"+email+"?subject=Blog Tryba&BODY=Cliquez ici pour accéder au site : http://blog.tryba.com";
	}
}
function laisserComm(){
	var zCommDisp = window.document.getElementById('ajoutComm').style.display;
	if (zCommDisp=='none'){
		window.document.getElementById('ajoutComm').style.display = "block";
		window.document.getElementById('listeComm').style.backgroundImage = ""
	}else{
		window.document.getElementById('ajoutComm').style.display = "none";
		window.document.getElementById('listeComm').style.backgroundImage = "url('../commentaireBas.jpg')"
	}
}
