function agrandir(photo) {
	agrandir_taille(photo, 770, 500);
}



function agrandir_taille(photo, MyWidth, MyHeight) {

image = new Image();
image.src = "http://www.vikings-casinos.fr/web/bourbon-archambault/restaurant/fichiers/"+photo;

var ns4 = (document.layers)? true:false;    //NS 4 
var ie4 = (document.all)? true:false;   //IE 4 
var dom = (document.getElementById)? true:false;   //DOM 
var xMax, yMax, xOffset, yOffset;

    if (ie4 || dom)
        {
        xMax = screen.width;
        yMax = screen.height;
        }
    else if (ns4)
        {
        xMax = window.outerWidth;
        yMax = window.outerHeight;
        }
    else
        {
        xMax = 800;
        yMax = 600;
        }
    xOffset = (xMax - MyWidth)/2;
    yOffset = (yMax - MyHeight)/2;

html = '<html><head><title>Vikings Casinos - Carte & Menus</title><link href="http://www.vikings-casinos.fr/web/css/vikings_casinos.css" rel="stylesheet" type="text/css"></head><body style="margin:0px; onload= "window.focus();"><A href="javascript:window.close()"><img src='+image.src+' alt="Fermer la fenêtre" name="photo" class="image_agrandie"></A></body></html>';
popupImage = window.open('','','width='+MyWidth+', height='+MyHeight+', scrollbars=yes, resizable=no, screenX='+xOffset+', screenY='+yOffset+', top='+yOffset+', left='+xOffset);
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close();
}; 