function maBoutique(boutique, taille, nb_colonnes, nb_lignes)
{
	if(nb_colonnes < 3 || nb_colonnes > 5) nb_colonnes = 3;
	if(nb_lignes < 1 || nb_lignes > 3) nb_lignes = 1;
	
	var nb_interv_colonnes = nb_colonnes + 1;
	var nb_interv_lignes = nb_lignes - 1;
	
	if(taille == 'moy')
	{
		width = 170 * nb_colonnes + (15 * nb_interv_colonnes);
		height = 150 * nb_lignes + (13 * nb_interv_lignes) + 101 + 40;
		
		if(width < 300) width = 400;
	}
	else
	{
		width = 77 * nb_colonnes + (15 * nb_interv_colonnes);
		height = 77 * nb_lignes + (13 * nb_interv_lignes) + 101 + 40;
		
		if(width < 120) width = 400;
	}
	
	//var url = 'http://www.ouiky.com/vues/external/mini_boutique.php?boutique='+boutique+'&nb_colonnes='+nb_colonnes+'&nb_lignes='+nb_lignes+'&taille='+taille;
	//var url = 'http://localhost/ouiky/vues/external/mini_boutique.php?boutique='+boutique+'&nb_colonnes='+nb_colonnes+'&nb_lignes='+nb_lignes+'&taille='+taille;
	var url = 'http://www.ouiky.com/vues/external/mini_boutique.php?boutique='+boutique+'&nb_colonnes='+nb_colonnes+'&nb_lignes='+nb_lignes+'&taille='+taille;
	var contenu = '<iframe allowtransparency=true marginwidth=0 marginheight=0 hspace=0 vspace=0 width='+width+' ' + 'height='+height+' ' + 'src="'+url+'" scrolling="no" frameborder="0">' + '</iframe>';
	document.write(contenu);
}
