$(function(){
			
			$('.rnd2').corner("round 2px");
			$('.rnd8').corner("round 8px");
			$('.rnd4').corner("round 4px");
			$('.rndBottom8').corner("bottom 8px cc:#fff keep" );

			
	});

function open_popup(contenu, width, height){
	request_url = 'popup-contenu.php?'+ 'contenu=' + contenu;
	window_name = 'popup_contenu';
	window_features = 'width=' + width + ',height=' + height + ',resizable=1,scrollbars=1';
	
	winObject = window.open(request_url, window_name, window_features);
	if(window.focus)
	{
		winObject.focus();
	}

	return false;
}

function open_popup_produit(id, width, height){
	request_url = 'popup-detail-produit.php?'+ 'id=' + id;
	window_name = 'popup_contenu';
	window_features = 'width=' + width + ',height=' + height + ',resizable=1,scrollbars=1';
	
	winObject = window.open(request_url, window_name, window_features);
	if(window.focus)
	{
		winObject.focus();
	}

	return false;
}