function zoom(img,largeur,hauteur) {

var left0=(screen.availWidth-largeur)/2;
var top0=(screen.availHeight-hauteur)/2; 


titre="zoom";
w=open('','image','top='+top0+'px,left='+left0+'px,width='+largeur+'px,height='+hauteur+'px,toolbar=no,scrollbars=no,resizable=no');	
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE>");
w.document.write("<SC"+"RIPT language=java"+"script> function checksize()  { if (document.images['img'].complete) {  window.resizeTo(document.images[0].width+12,document.images[0].height+30); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT></HEAD>");
w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<div style='position:absolute;z-index:2;backgroundcolor:red;top:0px;left:0px;width:"+largeur+"px;height:"+hauteur+"px;'><IMG src='media/bouton/spacer.gif' style='width:"+largeur+"px;height:"+hauteur+"px;'></div>");
w.document.write("<IMG src='"+img+"' border=0 name='img'>");
w.document.write("");
w.document.write("</BODY></HTML>");
w.document.close();
 }
 function detail_ville(page) {
 var width=700;
 var height=550;
x = (640 - width)/2, y = (480 - height)/2;
if (screen) {
y = (screen.availHeight - height)/2;
x = (screen.availWidth - width)/2;
}
if (screen.availWidth > 1800) { 
x = ((screen.availWidth/2) - width)/2; 
} 
window.open(page,'CGV','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',scrollbars=1,left='+x);
}
 function fiche_artiste(page) {
 var width=700;
 var height=550;
x = (640 - width)/2, y = (480 - height)/2;
if (screen) {
y = (screen.availHeight - height)/2;
x = (screen.availWidth - width)/2;
}
if (screen.availWidth > 1800) { 
x = ((screen.availWidth/2) - width)/2; 
} 
window.open(page,'CGV','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',scrollbars=1,left='+x);
}
