// Java Document
function aff(nom,largeur,hauteur) {
	r=0;
	largeur=largeur+0;
	hauteur=hauteur+0;
	doc = window.open('','','toolbar=0,directories=0,location=0,status=0,menubar=0,scrollbars='+r+',resizable=0,width='+largeur+',height='+hauteur);
	doc.document.write("<html><head><title>Patisserie KAUTZMANN</title></head><body topmargin=0 leftmargin=0 bgcolor='000000'>");
	doc.document.write("<p align=center><font size=1 face=arial><a href='javascript:self.close();'><img border=0 src='");
	doc.document.write(nom);
	doc.document.write("' alt='Cliquez ici pour fermer'></a></body></html>");
	L = largeur;
	H = hauteur;
	doc.window.resizeTo(L,H);
	win_width=(screen.width/2)-L/2;
	win_height=(screen.height/2)-H/2;
	doc.window.moveTo(win_width,win_height);
	doc.window.focus();
}
//-->