/**
 *
 */
 	function contentPopup ( id, width, height, addSettings )
	{
		if ( ! width  ) width  = 300;
		if ( ! height ) height = 400;
		if ( ! addSettings ) addSettings = '';
	
		var popup = window.open ( frontend_abs_path + 'index.php?m=cpopup&o=' + id, 'cpopup', 'width=' + width + 'px height=' + height + 'px ' + addSettings );
			popup.focus ( );
	}