// JavaScript Document
function WrtSmall(Small,Big)
{
document.write('<A HREF="javascript:WrtBig(\''+Big+'\')"><IMG SRC="'+Small+'" HSPACE=0 VSPACE=0 BORDER=0></A>');
}
function WrtBig(File)
{
//LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;
i1 = new Image;
i1.src = File;
html = '<HTML><HEAD><TITLE>Associations des Comportementalistes Canin</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 BGCOLOR=#241405><CENTER><IMG SRC="'+File+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width,document.imageTest.height+30)"></CENTER></BODY></HTML>';
PopupImage = window.open('','_blank','top=150, left=195, toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
PopupImage.document.open();
PopupImage.document.write(html);
PopupImage.document.close();
}

