// JavaScript Document

function popup(adresse) {
	j = Math.floor((screen.height*550)/768);
	k = Math.floor((screen.width-1000)/2);
	fin = 'height='+j+',left='+k;
	
	w = window.open(''+adresse,'ERASME','toolbar=no,status=yes,scrollbars=yes,width=1000,top=10,'+fin);	
	w.focus();
}
