/* auteur: Pagliai Joel */
/* Date de création: 07/05/2006 */
/*	<script language="javascript" src="commun/open.js"></script>	*/
/*	onclick="opwin(610,355,'help.php','aide')"	*/
/*	href="javascript:opwin(320,200,'rcp.php?code_des=<?=$id?>','recette');" */

function opwin(x1,y1,file,nom)
{	var floater = null;
	var chaine = 'width='+x1+',height='+y1+',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no';
	floater=window.open(file,nom,chaine);
	floater.moveTo(((screen.width / 2) - (x1 / 2)), ((screen.height / 2) - (y1 / 2)));
	}

function opwin1(x1,y1,file,nom)
{	var floater = null;
	var chaine = 'width='+x1+',height='+y1+',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no';
	floater=window.open(file,nom,chaine);
	floater.moveTo(10,10);
	}

function opwin2(file,nom){
	var floater = null;
	var chaine = 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes';
	floater=window.open(file,nom,chaine);
	}