function getPass(cpteType) 
{ 
	var formulaire = document.forms['getpass'];
	
	if(cpteType == 1) { formulaire.elements['choix'].value = '1'; }
	else { formulaire.elements['choix'].value = '0'; }
	
	window.open('about:blank', 'winpass','top=400,left=300,resizable=no, location=no, width=500, height=300, menubar=no, status=no, scrollbars=no, menubar=no');
	
	formulaire.target = 'winpass';
	formulaire.submit();
}
