popupWindow = null;

function popup(x,y) {
    popupWindow = window.open("","photo_window",'toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=900,height=700');
    if (y == '2') {
        popupWindow.resizeTo(590,402);
    }
    if (y == '1') {
        popupWindow.resizeTo(590,460);
    }
	if (y == '3') {
        popupWindow.resizeTo(590,422);
	}
	if (y == '4') {
        popupWindow.resizeTo(590,446);
	}	
	if (y == '5') {
        popupWindow.resizeTo(590,383);
	}	
	if (y == '6') {
        popupWindow.resizeTo(430,362);
	}
	if (y == '7') {
        popupWindow.resizeTo(530,422);
	}
	if (y == '8') {
        popupWindow.resizeTo(590,452);
	}
	if (y == '9') {
        popupWindow.resizeTo(689,493);
	}		
    generePopup(x,y);
    popupWindow.focus();
}

script = '</'
bla = 'SCRIPT>';
function generePopup(x,y) {
    
    popupWindow.document.open();
    popupWindow.document.write("<html><head><title>La faune</title>");
    popupWindow.document.write("<SCRIPT language='Javascript'>");
    popupWindow.document.write("window.name='photo_window'");
    popupWindow.document.write(script+bla);
    popupWindow.document.write("<LINK rel='stylesheet' href='css/kelmonde.css'></head>");
    popupWindow.document.write("<body bgcolor=#999999 bottommargin=0 topmargin=20 leftmargin=36 rightmargin=0 text=#FFFFFF>");
    popupWindow.document.write("<P><IMG src='"+x+"'");
    if (y == '2') {
        popupWindow.document.write(" width='510' height='329' alt=''>");
    }
    if (y == '1') {
        popupWindow.document.write(" width='510' height='387' alt=''>");
    }
	if (y == '3') {
        popupWindow.document.write(" width='510' height='349' alt=''>");
    }
	if (y == '4') {
        popupWindow.document.write(" width='510' height='373' alt=''>");
    }
	if (y == '5') {
        popupWindow.document.write(" width='510' height='310' alt=''>");
    }
	if (y == '6') {
        popupWindow.document.write(" width='350' height='289' alt=''>");
    }
	if (y == '7') {
        popupWindow.document.write(" width='450' height='349' alt=''>");
    }
	if (y == '8') {
        popupWindow.document.write(" width='510' height='379' alt=''>");
    }
	if (y == '9') {
        popupWindow.document.write(" width='600' height='420' alt=''>");
	}                                    
    popupWindow.document.write("<CENTER><A href='javascript:window.close();'>fermer la fenêtre</A></CENTER></P>");
    popupWindow.document.write("</body></html>");
    popupWindow.document.close();
}