function choix_chien(page,nom,hauteur,largeur)
//ouvre une popup
{ window.open(page,nom,"status=no,scrollbars=yes,resizable=no,height="+hauteur+",width="+largeur+",top=0,left=0"); }

function ouverture(page,nom,x,y,scrollbar,resize)
{
attribut = "width="+x+",height="+y+",scrollbars="+scrollbar+",resizable="+resize;
window.open(page,nom,attribut);
}


// TAILLE LA FENETRE EN OUVRANT UNE IMAGE
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>Chiens de France</TITLE><BODY bgcolor=#FFFFFF><CENTER> <IMG SRC="'+chemin+'" BORDER=0 NAME=imageCdF onload="window.resizeTo(document.imageCdF.width+64,document.imageCdF.height+150)"></CENTER><br>&nbsp;&nbsp;&nbsp;<a href="javascript:top.close();"><font face=verdana size=-2>Fermer</font></a>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	html2='<script language="Javascript">var Msg="Copyright Chiens de France";function NoRightClick(btnClick){if(navigator.appName=="Netscape"&& btnClick.which==3)	{alert(Msg);return false;} else if(navigator.appName=="Microsoft Internet Explorer"&&event.button==2){alert(Msg);return false;}}document.onmousedown=NoRightClick;</script>';
	html3='</BODY></HTML>';
	popupImage.document.write(html2);
	popupImage.document.write(html3);
	popupImage.document.close()
	};

