//--------------------------------------------- Affichages --------------

function go2Liseuse(mid)
{
    l = 1000 ;
    h = 700;
	hauteur=Math.round((screen.availHeight-h)/2);
	largeur=Math.round((screen.availWidth-l)/2);
	var path = window.location.pathname;
	path = path.substr(0,path.lastIndexOf("/")+1);
	url=path + "milibris/liseuse.php?issue_mid="+ mid ;

	window.open(url, "", "scrollbars=yes,resizable=yes,top="+hauteur+",left="+largeur+",width="+l+",height="+h,false);
}

