function afficheInformation(p_bd){
	var selectValue = document.getElementById('idSelect')[document.getElementById('idSelect').selectedIndex].value;
	var infoWin = window.open('AfficheInformation.asp?bd=' + p_bd + '&id=' + selectValue, 'window', 'resizable=no,width=300,height=400,scrollbars=yes');
}
function showWin(p_page, p_width, p_height){
	var win = window.open (p_page, 'page', 'scrollbars=yes,status=no,resizable=yes,width=' + p_width + ', height=' + p_height)
}


