// ActionScript Bento

<!-- DEBUT DU SCRIPT popup image -->
<!--
function popAWindow(jpg,width,height) {
		var w = 20 + width;
		var h = 20 + height;
		scrl='no';
		window.open(jpg,"jpeg","location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,hotkeys=no,directories=no,copyhistory=no,width="+w+",height="+h);    
	}
<!-- DEBUT DU SCRIPT image annonces -->
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>Photo Annonce</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><IMG SRC="'+chemin+'" BORDER=0 ALT="Cliquer pour fermer la Fenêtre..." NAME=Photo Onclick="self.close()" onLoad="window.resizeTo(document.Photo.width+14,document.Photo.height+32)"></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	//pop-up
function ouvrir_popup(adresse) {
	window.open(adresse,'instantcustompopup', 'left=400,top=150,width=500,height=750,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,location=no,directories=no'); 
	return;
}	


