// JavaScript Document
function openpopup(){
	var fenetre=window.open('', 'popup', 'width=850,height='+screen.availHeight+',menubar=1,scrollbars=1,resizable=1,left=' + ((screen.width - 820)/2) + ',top=100');	
	fenetre.focus();
	}

