// JavaScript Document

function afficheCarte(file,alt,width,height,mult)
{
if ((!mult) || (mult==0)) mult=1;
document.write('<img src="'+file+'" alt="'+alt+'" title="'+alt+'" width="'+(width*mult)+'" height="'+(height*mult)+'">');
}

