// JavaScript Document

function popup_ag(texte,nom_recette){
	var winWidth = 560;
	var winHeight = 600;
	var posLeft = (screen.availWidth - winWidth) / 2;
	var posTop = (screen.availHeight - winHeight) / 2;
	var winInfo = 'width=' + winWidth + ',height=' + winHeight + ',left=' + posLeft + ',top=' + posTop + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes';
	var winlaunch = window.open("../include/popup_ag.php?texte_recette="+texte+"&nom_recette_meta="+nom_recette+"", 'popupwindow', winInfo);
	winlaunch.moveTo(posLeft,posTop);
}

