//+ de 20 boutons
function Active(imgName) {
	if (document.images) {
		document[imgName].src = "img/bt_"+imgName.charAt(3)+""+imgName.charAt(4)+"_over.gif";}}

function Inactive(imgName) {
	if (document.images) {
		document[imgName].src = "img/bt_"+imgName.charAt(3)+""+imgName.charAt(4)+".gif";}}


function Active2(imgName) {
	if (document.images) {
		document[imgName].src = "img/bt_1_"+imgName.charAt(5)+"_over.gif";}}

function Inactive2(imgName) {
	if (document.images) {
		document[imgName].src = "img/bt_1_"+imgName.charAt(5)+".gif";}}
		
function preload() {
	bt1 = new Image(); bt1.src = "img/bt_1_over.gif";
	bt2 = new Image(); bt2.src = "img/bt_2_over.gif";
	bt3 = new Image(); bt3.src = "img/bt_3_over.gif";
	bt4 = new Image(); bt4.src = "img/bt_4_over.gif";
	bt5 = new Image(); bt5.src = "img/bt_5_over.gif";
	bt6 = new Image(); bt6.src = "img/bt_6_over.gif";
	bt7 = new Image(); bt7.src = "img/bt_7_over.gif";
	bt8 = new Image(); bt8.src = "img/bt_8_over.gif";
	bt9 = new Image(); bt9.src = "img/bt_9_over.gif";
}

function closeBrWindow(winName) { //v2.0
  window.close(winName);
}


function viewPic(img)
{
	i1 = new Image;
	i1.src = img;
	html = '<HTML><HEAD><TITLE>Image</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"><tr><td align="center" valign="middle"><IMG SRC="'+img+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+20,document.imageTest.height+60)" onclick="javascript:window.close()"></CENTER></td></tr></table></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
