<!--
function afficheMaxi(chemin)
		{
		i1 = new Image;
		i1.src = chemin;
		html = '<HTML><HEAD><TITLE>Image</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.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()
		};
function popup_large(page) {
	// ouvre une fenetre sans barre d'etat, ni d'ascenceur
	mawin = window.open(page,'popup','width=640,height=400,toolbar=false,scrollbars=yes');
	mawin.focus();
}

function popup_long(page) {
	// ouvre une fenetre sans barre d'etat, ni d'ascenceur
	mawin = window.open(page,'popup','width=460,height=600,toolbar=false,scrollbars=yes');
	mawin.focus();
}

function popup_chat(page) {
	// ouvre une fenetre sans barre d'etat, ni d'ascenceur
	mawin = window.open(page,'popup','width=400,height=250,toolbar=false,scrollbars=yes');
	mawin.focus();
}

function plein_ecran(page, titre)
{
	var hauteur_popup=590;
	var H = (screen.height - hauteur_popup) / 2;
	var largeur_popup=790;
	var L = (screen.width - largeur_popup) / 2;
	mawin = window.open(page,titre,'width='+largeur_popup+',height='+hauteur_popup+',top='+H+',left='+L+',toolbar=false,scrollbars=yes');
	mawin.focus();
}


function popup_max(page) {
	// ouvre une fenetre sans barre d'etat, ni d'ascenceur
	mawin = window.open(page,'popup','width=800,height=600,toolbar=false,scrollbars=yes');
	mawin.focus();
}
//-->

